log_fatal {rlog} | R Documentation |
Log messages will only be emitted if the log priority matches or is higher than the priority of your message
log_fatal(message)
message |
your message to log |
invisibly returns TRUE/FALSE
## Not run:
log_fatal("This is a fatal message")
Sys.setenv("LOG_LEVEL" = "TRACE")
log_fatal("This is a fatal message")
## End(Not run)