R/configurations.R
set_log_level.Rd
Set Log Level
set_log_level(level = "DEBUG", confirm = TRUE)
Log level to set, as a string or integer.
Print confirmation message of log level?
Invisible the previous log level.
Log levels are as follows: DEBUG: 4 INFO: 3 WARNING: 2 ERROR: 1 NONE: 0
if (FALSE) { # \dontrun{ set_log_level("DEBUG") set_log_level("INFO") set_log_level(4) set_log_level(3) } # }