UNPKG

@elsikora/cladi

Version:

Zero-dependency TypeScript DI toolkit with typed tokens and scoped lifecycles.

17 lines 469 B
import type { ELoggerLogLevel } from '../../domain/enum/index'; /** * The options for the console logger. * @see {@link https://elsikora.com/docs/cladi/services/logging} */ export interface IConsoleLoggerOptions { /** * The log level to use. * @default ELoggerLogLevel.INFO */ level: ELoggerLogLevel; /** * The source to use for the logger. */ source?: string; } //# sourceMappingURL=console-logger-options.interface.d.ts.map