| 3 | import { timer } from './timers'; |
| 4 | |
| 5 | interface LogLine { |
| 6 | created: number; |
| 7 | level: string; |
| 8 | module: string; |
| 9 | facility: string; |
| 10 | msg: string; |
| 11 | } |
| 12 | |
| 13 | let logMonitorEl: HTMLElement | null = null; |
| 14 | let logMonitorStatus = true; |
nothing calls this directly
no outgoing calls
no test coverage detected