( label: string, message: string, type: LogLevel = "info", data: LogDataOrUndefined = undefined, )
| 182 | * Log an info statement with a gray bullet at the start of the line. |
| 183 | */ |
| 184 | export function logLabeledBullet( |
| 185 | label: string, |
| 186 | message: string, |
| 187 | type: LogLevel = "info", |
| 188 | data: LogDataOrUndefined = undefined, |
| 189 | ): void { |
| 190 | logger[type](clc.cyan(clc.bold(`i ${label}:`)), message, data); |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Log an info statement with a gray bullet at the start of the line. |
no outgoing calls
no test coverage detected
searching dependent graphs…