* Gets a debugger for a context. * * @param name The name of the context. * @returns A debugger interace which can be used to debug.
(name: string)
| 61 | * @returns A debugger interace which can be used to debug. |
| 62 | */ |
| 63 | debugContext(name: string): nodeDebug.Debugger { |
| 64 | return nodeDebug(`${this.config.context}:${name}`); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | export const logger = new Logger(); |
no outgoing calls
no test coverage detected