()
| 61 | // Use local timezone for simplicity of locating the logs, |
| 62 | // in practice you will not need absolute timestamps |
| 63 | localTimezoneTimestamp(): string { |
| 64 | return createTimestampForLogEntry() |
| 65 | } |
| 66 | |
| 67 | debug(message: string, ...args: unknown[]): void { |
| 68 | this.logToFile(`[${this.localTimezoneTimestamp()}]`, message, ...args) |
no test coverage detected