getLogger {logging} | R Documentation |
Set defaults and get the named logger.
Description
Make sure a logger with a specific name exists and return it as a Logger S4 object. if not yet present, the logger will be created and given the values specified in the ... arguments.
Usage
getLogger(name = "", ...)
Arguments
name |
The name of the logger |
... |
Any properties you may want to set in the newly created logger. These have no effect if the logger is already present. |
Value
The logger retrieved or registered.
Examples
getLogger() # returns the root logger
getLogger('test.sub') # constructs a new logger and returns it
getLogger('test.sub') # returns it again
[Package logging version 0.10-108 Index]