UNPKG

@elsikora/cladi

Version:

ClaDI is a library for creating and managing classes in TypeScript.

17 lines 506 B
import type { ELoggerLogLevel } from '../../domain/enum/index'; /** * The options for the console logger. * @see {@link https://elsikora.com/docs/cladi/services/logging} for more details on logging options. */ 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