Readonly
logReadonly
getGet a logger instance with the specified id.
const logger = getLogger('my-logger')
logger.info('Hello world!') // 2020-01-01T00:00:00.000Z my-logger (INFO) Hello world!
Optional
options: LoggerOptionsOptional
Readonly
getGet a non-console logger instance with the specified id.
The resulting logger will only send to the reporters that are not console reporters.
const logger = getNonConsoleLogger('my-logger')
logger.info('Hello world!') // will not send to any console reporter
Optional
options: LoggerOptionsOptional
Readonly
toReadonly
toGenerated using TypeDoc
The current log level.