powered by
Log an informational message
log_info(..., verbose = TRUE, wrap = TRUE, .envir = parent.frame())
Character strings to log. Supports glue-style interpolation.
Logical. Whether to print the message (default TRUE).
Logical. Whether to wrap long messages (default TRUE).
Environment for glue interpolation (default: parent frame).
if (FALSE) { log_info("Processing file:", "data.csv") subject_id <- "001" log_info("Processing subject {subject_id}") log_info("Found {nrow(data)} rows", "in dataset") }
Run the code above in your browser using DataLab