(logLevel: string, bizName: string)
| 87 | }; |
| 88 | |
| 89 | const output = (logLevel: string, bizName: string) => { |
| 90 | return (...args: any[]) => { |
| 91 | return outputFunction[logLevel]?.apply(console, getLogArgs(args, bizName, logLevel)); |
| 92 | }; |
| 93 | }; |
| 94 | |
| 95 | const getColor = (bizName: string) => { |
| 96 | if (!bizNameColorConfig[bizName]) { |