1type ExtendKind = 'click' | 'appear' | 'todo' | 'event' | 'expose';
2type AllKind = Kind | ExtendKind;
3
4interface LoggerExtendOptions {
5 store: {
6 needExposeKind: AllKind[];
7 };
8}
9
10const isProd = process.env.NODE_ENV === 'production';
11
12const logger = createLogger<ExtendKind, LoggerExtendOptions>({
13 // 非生产环境下需要打印调用栈
14 needTrace: !isProd,
15 // 生产环境下不在控制台输出
16 noOutput: isProd,
17 // 自定义 logger 方法配置
18 logConfig: {
19 // logger.click 方法样式继承自 logger.info
20 click: { kind: 'click', inherit: 'info' },
21 appear: { kind: 'appear', inherit: 'info', needTrace: false },
22 error: { kind: 'error', needTrace: true },
23 },
24 // 通过 LoggerExtendsOptions 扩展的配置项
25 store: {
26 needExposeKind: ['click', 'appear', 'error'],
27 },
28 // 生产环境下不在控制台输出 (不推荐使用该方法阻止日志输出, 如果一定要的话可以使用 `noOutput`)
29 // 返回 null 的话则将输出方法转交 `getPrintFunc` 控制
30 printFunc: isProd ? () => {} : null,
31 // 获取打印日志的函数, 如果未配置则默认使用 console.log
32 getPrintFunc(kind) {
33 // 根据不同的 kind 选择不同的输出方法
34 if (kind === 'click' || kind === 'error') return console.log;
35 return console.debug;
36 },
37 // 输出到控制台之前进行一些处理
38 onLogBefore(e) {
39 const { needExposeKind } = this.store;
40 if (isProd && needExposeKind.includes(kind)) {
41 // 阻止日志输出
42 e.preventDefault();
43 // 日志上报逻辑
44 // ...
45 }
46 },
47});