Learn R Programming

ParallelLogger (version 3.4.1)

logTrace: Log a message at the TRACE level

Description

Log a message at the TRACE level

Usage

logTrace(...)

Arguments

...

Zero or more objects which can be coerced to character (and which are pasted together with no separator).

Details

Log a message at the specified level. The message will be sent to all the registered loggers.

Examples

Run this code
appender <- createConsoleAppender(layout = layoutTimestamp)

logger <- createLogger(name = "SIMPLE",
                       threshold = "INFO",
                       appenders = list(appender))
registerLogger(logger)                      
logTrace("This event is below the threshold (INFO)")
logInfo("Hello world")                       
unregisterLogger("SIMPLE")                     

Run the code above in your browser using DataLab