(message?: any, ...optionalParams: any[])
| 110 | * @param optionalParams 其他参数 |
| 111 | */ |
| 112 | export const debug = (message?: any, ...optionalParams: any[]) => { |
| 113 | if (LOG_DEBUG) { |
| 114 | console.debug(LOG_PREFIX + message, ...optionalParams); |
| 115 | } |
| 116 | }; |
| 117 | |
| 118 | /** |
| 119 | * 提示 |