emit general info
(message: string, options?: LoggerOptions)
| 96 | |
| 97 | /** emit general info */ |
| 98 | public info(message: string, options?: LoggerOptions): void { |
| 99 | const name = (options && options.name) || 'snowpack'; |
| 100 | this.log({level: 'info', name, message, task: options?.task}); |
| 101 | } |
| 102 | |
| 103 | /** emit non-fatal warnings */ |
| 104 | public warn(message: string, options?: LoggerOptions): void { |
no test coverage detected