maps each log level to a handler.
Enabling a log level:
handlers.get('trace').enabled = true;
Change target:
`handlers.get('warn').target = Target.stderr
Static Readonly defaultStatic Readonly defaultStatic Readonly defaultadd a log level, which can be inovked with logger.log(name, 'my message');
recorded in each log
Optional handler: Partial<Handler>handler options. missing fields are populated by Logger.defaultHandler
fully initialized log handler
adds the middleware to handlers for all listed levels. if true, add to all handlers
Generated using TypeDoc
Log data to a target (default: stdout) in a specified format (default: json). Configure output levels (info, warn, etc) with custom targets or serializers Create transformations that extend or modify each log (e.g. add timestamp) Dynamically create new log levels, or extend the Logger class