(connection: IConnection, sendNotification: boolean = false)
| 2811 | } |
| 2812 | |
| 2813 | private refreshTrace(connection: IConnection, sendNotification: boolean = false): void { |
| 2814 | let config = Workspace.getConfiguration(this._id); |
| 2815 | let trace: Trace = Trace.Off; |
| 2816 | if (config) { |
| 2817 | trace = Trace.fromString(config.get('trace.server', 'off')); |
| 2818 | } |
| 2819 | this._trace = trace; |
| 2820 | connection.trace(this._trace, this._tracer, sendNotification); |
| 2821 | } |
| 2822 | |
| 2823 | |
| 2824 | private hookFileEvents(_connection: IConnection): void { |
nothing calls this directly
no test coverage detected