A logger configuration.
The category of the logger. If a string, it is equivalent to an array with one element.
optional
parentSinks: "inherit" | "override"
Whether to inherit the parent's sinks. If inherit
, the parent's sinks
are used along with the specified sinks. If override
, the parent's
sinks are not used, and only the specified sinks are used.
The default is inherit
.
The log level to filter by. If null
, the logger will reject all
records.
optional
lowestLevel: LogLevel | null
The lowest log level to accept. If null
, the logger will reject all
records.