MazamaCoreUtils (version 0.5.2)

logger.setLevel: Set console log level

Description

By default, the logger threshold is set to FATAL so that the console will typically receive no log messages. By setting the level to one of the other log levels: TRACE, DEBUG, INFO, WARN, ERROR users can see logging messages while running commands at the command line.

Usage

logger.setLevel(level)

Value

No return value.

Arguments

level

Threshold level.

See Also

logger.setup

Examples

Run this code
if (FALSE) {
# Set up console logging only
logger.setup()
logger.setLevel(DEBUG)
}

Run the code above in your browser using DataLab