library(dyn.log)
configs <- dyn.log::get_configurations(pkgname = "dyn.log")
init_logger(configs$knitr)
Log Layouts are the mechanism that ties everything in the package together with a composition based design. A log layout is essentially a container for formats, which defines exactly how the log message will get rendered. Layouts also have additional metadata attributes which allow for overrides to the default format separators, spacing, etc., as well as mechanism for associating a particular log layout with a type of R6 class.
There are two basic layouts that come with the standard configuration (default.yaml) bundled with the package, default and log_level.
layouts:
- association: default
seperator: ' '
new_line: \n
formats: new_fmt_log_level(),
new_fmt_timestamp(crayon::silver$italic),
new_fmt_log_msg()
- association: level_msg
seperator: ' '
new_line: \n
formats: new_fmt_log_level(),
new_fmt_log_msg()
The R equivalent of creating the default layout is essentially the same as the yaml definition:
new_log_layout(
format = list(
new_fmt_log_level(),
new_fmt_timestamp(crayon::silver$italic),
new_fmt_log_msg()
),
association = "default_via_r"
)
An info level log message generated with the package default config:
INFO [11/09/2024 03:37:53 +0000] this is the default layout
Now with the new layout defined above:
INFO [11/09/2024 03:37:53 +0000] this is the custom layout object
which render the exact same output, the idea here is that defining layouts via custom R code or via yaml in the configuration are exactly the same.
To create a customized log layout you only need to specify what formats you want rendered (and their arguments) in the formats argument, as seen above. See the Formats vignette for more detail on formats.
new_log_layout(
format = list(
new_fmt_metric(crayon::green$bold, "sysname"),
new_fmt_metric(crayon::yellow$bold, "release"),
new_fmt_line_break(),
new_fmt_log_level(),
new_fmt_timestamp(crayon::silver$italic),
new_fmt_exec_scope(crayon::magenta$bold, "calling_fn"),
new_fmt_literal(crayon::blue$italic, "literal text"),
new_fmt_log_msg(),
new_fmt_line_break(),
new_fmt_exec_scope(crayon::cyan$bold, "call_stack")
),
seperator = '-',
association = "log-with-callstack"
)
log_fn <- function() {
outer <- function() {
inner <- function() {
var1 <- "abc"; var2 <- 123; var3 <- round(runif(1), digits = 6)
Logger$debug("my log message - var1: '{var1}', var2: '{var2}', var3: '{var3}'",
layout = 'log-with-callstack')
}
inner()
}
outer()
}
log_fn()
Linux-6.5.0-1025-azure
DEBUG-[11/09/2024 03:37:53 +0000]-get_call_stack-literal text-my log message - var1: 'abc', var2: '123', var3: '0.348297'
NA-NA-NA-NA-NA-NA-NA-NA-NA-NA-NA-NA-NA-NA-get_call_stack