read_logs {loggit} | R Documentation |
Return log file as an R data frame
Description
This function returns a data.frame
containing all the logs in the provided
ndjson
log file. If no explicit log file is provided, calling this function
will return a data frame of the log file currently pointed to by the loggit
functions.
Usage
read_logs(logfile, unsanitizer)
Arguments
logfile |
Path to log file. Will default to currently-set log file. |
unsanitizer |
Unsanitizer function to use. For more info on sanitizers, please see the sanitizers section of the package documentation. |
Value
A data.frame
.
Examples
set_logfile(file.path(tempdir(), "loggit.log"), confirm = FALSE)
message("Test log message")
read_logs()
[Package loggit version 2.1.1 Index]