(messageOrLambda: string | (() => string), namespace = "z2m")
| 212 | } |
| 213 | |
| 214 | public debug(messageOrLambda: string | (() => string), namespace = "z2m"): void { |
| 215 | if (this.debugNamespaceIgnoreRegex?.test(namespace)) { |
| 216 | return; |
| 217 | } |
| 218 | |
| 219 | this.log("debug", messageOrLambda, namespace); |
| 220 | } |
| 221 | |
| 222 | // Cleanup any old log directory. |
| 223 | private cleanup(): void { |
no test coverage detected