setLogLevel | R Documentation |
Sets the rpact
log level.
setLogLevel(
logLevel = c("PROGRESS", "ERROR", "WARN", "INFO", "DEBUG", "TRACE", "DISABLED")
)
logLevel |
The new log level to set. Can be one of "PROGRESS", "ERROR", "WARN", "INFO", "DEBUG", "TRACE", "DISABLED". Default is "PROGRESS". |
This function sets the log level of the rpact
internal log message system.
By default only calculation progress messages will be shown on the output console,
particularly getAnalysisResults()
shows this kind of messages.
The output of these messages can be disabled by setting the log level to "DISABLED"
.
getLogLevel()
for getting the current log level,
resetLogLevel()
for resetting the log level to default.
## Not run:
# show debug messages
setLogLevel("DEBUG")
# disable all log messages
setLogLevel("DISABLED")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.