| 1 | import { Request, createLogger } from '@browserless.io/browserless'; |
| 2 | |
| 3 | export interface SessionContext { |
| 4 | trackingId?: string; |
| 5 | sessionId?: string; |
| 6 | path?: string; |
| 7 | method?: string; |
| 8 | [key: string]: string | undefined; |
| 9 | } |
| 10 | |
| 11 | export class Logger { |
| 12 | protected _trace: (...args: unknown[]) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected