(message: string)
| 116 | * Use this for status/progress messages that can be suppressed. |
| 117 | */ |
| 118 | export function log(message: string): void { |
| 119 | if (!currentConfig.quiet) { |
| 120 | console.log(message) |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Log a debug message (only shown in debug mode). |
no outgoing calls
no test coverage detected