Description Usage Arguments Details Examples
Use this function to maintain the list of handlers attached to a logger.
addHandler
and removeHandler
are also offered as methods of the
Logger S4 class.
1 2 3 | addHandler(handler, ..., logger = "")
removeHandler(handler, logger = "")
|
handler |
The name of the handler, or its action |
... |
Extra parameters, to be stored in the handler list ... may contain extra parameters that will be passed to the handler action. Some elements in the ... will be interpreted here. |
logger |
the name of the logger to which to attach the new handler, defaults to the root logger. |
Handlers are implemented as environments. Within a logger a handler is identified by its name and all handlers define at least the three variables:
all records at level lower than this are skipped.
a function getting a record and returning a string
action(msg, handler)
a function accepting two parameters: a formatted log record and the handler itself. making the handler a parameter of the action allows us to have reusable action functions.
Being an environment, a handler may define as many variables as you think you need. keep in mind the handler is passed to the action function, which can check for existence and can use all variables that the handler defines.
1 2 3 4 5 6 | logReset()
addHandler(writeToConsole)
names(getLogger()[["handlers"]])
loginfo("test")
removeHandler("writeToConsole")
logwarn("test")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.