the internal identifier of the log
.of(id)
logs to opening logsthe message of the log
determines if the log was highlighted with Loxer.highlight()
or Loxer.h()
an optional item like the console.log(message,
item
)
options to configure the (default) output of the item
the {@link LoxType 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 log level that was given with Loxer.level(number)
or Loxer.l(number)
the {@link 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 has not fulfilled the level that the corresponding module has set
the corresponding module of this Lox
compares another lox with this one. Loxes are equal if their id
is the same
to compare on equality
true if both have the same id
Generated using TypeDoc
This is a log streamed to the
devLog
orprodLog
output stream defined at the LoxerCallbacks.