日志管理

预计阅读时间: 小于 1 分钟

Logger - (class)

日志管理器

静态方法

1function getInstance(options: LoggerOptions): Logger;

参数

必填参数名说明类型默认值
options日志配置object
options.showModuleIds展示模块 idany[][]
options.showMethods展示方法string[]['log', 'info', 'warn', 'error', 'debug']
options.ignoreMessage忽略的消息string[]|IgnoreMessageFunc[]
options.messageTemplate消息模板string|MessageTemplateFunc#[date] #[moduleId]-#[method]:=>#[message]
options.controller日志控制器Controllerconsole
类型扩展

IgnoreMessageFunc

类型声明

1type IgnoreMessageFunc = (message: string) => boolean;

MessageTemplateFunc

类型声明

1type MessageTemplateFunc = (data: any[], moduleId: ModuleId, method: string, date: Date) => string | any[];

Controller

options.controller 必须要实现 Controller 接口

类型声明

1type ControllerFunc = (moduleId: any, ...args: any[]) => void;
2
3interface Controller {
4  log: ControllerFunc;
5  info: ControllerFunc;
6  warn: ControllerFunc;
7  error: ControllerFunc;
8  debug: ControllerFunc;
9  onOutput?: (logInfo: LogInfo) => void;
10}

返回值

Logger 实例

实例方法

1interface Logger {
2  log(moduleId: any, method: string, ...args: any[]): void;
3  info(moduleId: any, method: string, ...args: any[]): void;
4  warn(moduleId: any, method: string, ...args: any[]): void;
5  error(moduleId: any, method: string, ...args: any[]): void;
6  debug(moduleId: any, method: string, ...args: any[]): void;
7}