Description Usage Arguments Details Examples
Message composer is used to compose log message out of formating string and arguments.
It is function with signature function(msg, ...)
. Formating message is passed under msg
and formating arguments are passed as ...
.
1 | setMsgComposer(composer_f, container = "")
|
composer_f |
message composer function (type: function(msg, ...)) |
container |
name of logger to reser message composer for (type: character) |
If message composer is not set default is in use (realized with sprintf
). If message
composer is not set for sub-logger, parent's message composer will be used.
1 2 3 4 | setMsgComposer(function(msg, ...) paste0("s-", msg, "-e"))
loginfo("a message") # will log '<TS> INFO::s-a message-e'
resetMsgComposer()
loginfo("a message") # will log '<TS> INFO::a message'
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.