the internal identifier of the log
.of(id) logs to opening logsLoxer instance the log belongs to, so ids stay unique within itthe message of the log
determines if the log was highlighted with Loxer.highlight() or Loxer.h()
the values the log was called with, after its message - like
console.log(message,...props)
the configuration for rendering Lox.props in the built-in output, as passed to
Loxer.printProps(...) / Loxer.pp(...)
undefined means the call did not ask for its props to be renderedthe type of the log
the corresponding key of a module from LoxerOptions.modules
DEFAULT if logged with empty module Loxer.module() or Loxer.m()NONE if logged without a moduleINVALID if logged with a module that was not defined at LoxerOptions.modulesthe LogLevel of the log
'error' for every Loxer.error() / Loxer.of(...).error()'info' for Loxer.log() / Loxer.open()Loxer.warn/info/debug(...), their .open(), and
Loxer.of(...).warn/info/debug()Loxer.of(...).add() / .close()the Date the log was declared
the box layout of the log which an array of type { box: keyof BoxSymbol; color: string }, where:
keyof BoxSymbol is a string which represents the form of the box segment (character)color is the string color of the box segment (represents the corresponding module color)a string that represents the time consumption from the opening log's timestamp until this log appeared
'' when the log is a single Loxer.log() or an opening log itselfthe time consumption (in ms) from the opening log's timestamp until this log appeared
undefined when the log is a single Loxer.log() or an opening log itselfdetermines if the log's level sits past the level its module logs up to — a hidden log enters neither the history nor the visible box layout
false on an ErrorLox: errors are output whatever the level saysthe corresponding module of this Lox
A visible ordinary log emitted to the configured output stream as an event with
kind: 'log'.