| 1 | import { DeepstreamLogger, DeepstreamPlugin, LOG_LEVEL, NamespacedLogger, EVENT } from '@deepstream/types' |
| 2 | |
| 3 | interface Log { |
| 4 | level: number, |
| 5 | event: string, |
| 6 | message: string |
| 7 | } |
| 8 | |
| 9 | export class E2ELogger extends DeepstreamPlugin implements DeepstreamLogger { |
| 10 | public description = 'Test Logger' |
nothing calls this directly
no outgoing calls
no test coverage detected