( label: string, message: string, type: LogLevel = "info", data: LogDataOrUndefined = undefined, )
| 159 | * Log an info statement with a green checkmark at the start of the line. |
| 160 | */ |
| 161 | export function logLabeledSuccess( |
| 162 | label: string, |
| 163 | message: string, |
| 164 | type: LogLevel = "info", |
| 165 | data: LogDataOrUndefined = undefined, |
| 166 | ): void { |
| 167 | logger[type](clc.green(clc.bold(`${SUCCESS_CHAR} ${label}:`)), message, data); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Log an info statement with a gray bullet at the start of the line. |
no outgoing calls
no test coverage detected
searching dependent graphs…