( label: string, message: string, type: LogLevel = "warn", data: LogDataOrUndefined = undefined, )
| 213 | * Log an info statement with a gray bullet at the start of the line. |
| 214 | */ |
| 215 | export function logLabeledWarning( |
| 216 | label: string, |
| 217 | message: string, |
| 218 | type: LogLevel = "warn", |
| 219 | data: LogDataOrUndefined = undefined, |
| 220 | ): void { |
| 221 | logger[type](clc.yellow(clc.bold(`${WARNING_CHAR} ${label}:`)), message, data); |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * Log an error statement with a red bullet at the start of the line. |
no outgoing calls
no test coverage detected
searching dependent graphs…