(args: string | Error, extra?: Record<string, unknown>)
| 88 | } |
| 89 | |
| 90 | public error(args: string | Error, extra?: Record<string, unknown>) { |
| 91 | this.write(args.toString(), 'error', extra); |
| 92 | return this; |
| 93 | } |
| 94 | |
| 95 | public debug(args: string, extra?: Record<string, unknown>) { |
| 96 | if (!this.isZiplineDebug()) return this; |
no test coverage detected