logInfo | R Documentation |
Log a message at the INFO level
logInfo(...)
... |
Zero or more objects which can be coerced to character (and which are pasted together with no separator). |
Log a message at the specified level. The message will be sent to all the registered loggers. This
is equivalent to calling R's native message()
function.
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.