A LogEvent is a single unit of data that should be logged. LogEvents are
usually created by a Logger, and then processed by one more Appenders.
They do not need to be instantiated manually except for testing and
experimentation; however, if you plan on writing your own Appenders or
Layouts you need to understand LogEvents.
See also
Other docs relevant for extending lgr:
as_LogEvent(),
event_list(),
standardize_threshold()
Public fields
levelinteger. The log_level / priority of the LogEvent. Use the active bindinglevel_nameto get thecharacterrepresentation instead.timestampPOSIXct. The time when then the LogEvent was created.callercharacter. The name of the calling function.msgcharacter. The log message..loggerLogger. A reference to the Logger that created the event (equivalent to
get_logger(event$logger)).rawMsgcharacter. The raw log message without string interpolation.
Active bindings
valueslist. All values stored in theLogEvent, including all custom fields, but not includingevent$.logger.level_namecharacter. The log_level / priority of the LogEvent labelled according togetOption("lgr.log_levels")loggercharacterscalar. The name of the Logger that created this event, equivalent toevent$.logger$name)
Methods
Method new()
The arguments to LogEvent$new() directly translate to the fields stored
in the LogEvent. Usually these values will be scalars, but (except for
"logger") they can also be vectors if they are all of the same length (or
scalars that will be recycled). In this case the event will be treated by
the Appenders and Layouts as if several separate events.
Arguments
logger, level, timestamp, caller, msgsee Public fields.
...All named arguments in
...will be added to the LogEvent as custom fields. You can store arbitrary R objects in LogEvents this way, but not all Appenders will support them. See AppenderJson for
Examples
lg <- get_logger("test")
lg$error("foo bar")
#> ERROR [06:40:30.524] foo bar
# The last LogEvent produced by a Logger is stored in its `last_event` field
lg$last_event # formatted console output
#> ERROR [2025-07-23 06:40:30] foo bar
lg$last_event$values # values stored in the event
#> $level
#> [1] 200
#>
#> $timestamp
#> [1] "2025-07-23 06:40:30 UTC"
#>
#> $logger
#> [1] "test"
#>
#> $caller
#> [1] "eval"
#>
#> $msg
#> [1] "foo bar"
#>
#> $rawMsg
#> [1] "foo bar"
#>
# Also contains the Logger that created it as .logger
lg$last_event$logger
#> [1] "test"
# equivalent to
lg$last_event$.logger$name
#> [1] "test"
# This is really a reference to the complete Logger, so the following is
# possible (though nonsensical)
lg$last_event$.logger$last_event$msg
#> [1] "foo bar"
identical(lg, lg$last_event$.logger)
#> [1] TRUE
lg$config(NULL) # reset logger config
#> <Logger> [info] test
#>
#> inherited appenders:
#> console: <AppenderConsole> [all] -> console