Protected
nameStatic
levelStatic
transportsStatic
ignoreA transport function that does nothing.
Use this to ignore a severity level as an alternative to setting the LogLevel, this can be useful where for example the trace transport is enabled but sending to an alternative location, but you want to disable info.
const logger = new Logger("MyLogger");
logger.transports = { debug: Logger.ignore, info: Logger.ignore, warn: print, error: print };
Generated using TypeDoc
Represents a logger that can be used to log messages with different severity levels.
Change the static level property to change the severity level of messages that are logged.
Change the static transports property to change the way messages are logged.
Use Logger.ignore to ignore a severity level.
Example