Log messages will only be emitted if the log priority matches or is higher than the priority of your message
log_info(message, ...)invisibly returns TRUE/FALSE
if (FALSE) { # \dontrun{
log_info("This is an info message")
Sys.setenv("LOG_LEVEL" = "TRACE")
log_info("This is an info message")
} # }