(message: string, ...args: Array<Record<string, unknown> | undefined>)
| 57 | } |
| 58 | |
| 59 | log(message: string, ...args: Array<Record<string, unknown> | undefined>) { |
| 60 | if (this.#level < 0) return; |
| 61 | |
| 62 | this.#structuredLog(console.log, message, "log", ...args); |
| 63 | } |
| 64 | |
| 65 | error(message: string, ...args: Array<Record<string, unknown> | undefined>) { |
| 66 | if (this.#level < 1) return; |
no test coverage detected