diff options
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 641ec15c6..7e6c310a9 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -2,6 +2,7 @@ import * as vscode from 'vscode'; | |||
2 | import * as lc from 'vscode-languageclient'; | 2 | import * as lc from 'vscode-languageclient'; |
3 | 3 | ||
4 | import { Ctx, sendRequestWithRetry } from './ctx'; | 4 | import { Ctx, sendRequestWithRetry } from './ctx'; |
5 | import { log } from './util'; | ||
5 | 6 | ||
6 | export function activateInlayHints(ctx: Ctx) { | 7 | export function activateInlayHints(ctx: Ctx) { |
7 | const hintsUpdater = new HintsUpdater(ctx); | 8 | const hintsUpdater = new HintsUpdater(ctx); |
@@ -71,7 +72,7 @@ class HintsUpdater { | |||
71 | } | 72 | } |
72 | 73 | ||
73 | async setEnabled(enabled: boolean): Promise<void> { | 74 | async setEnabled(enabled: boolean): Promise<void> { |
74 | console.log({ enabled, prev: this.enabled }); | 75 | log.debug({ enabled, prev: this.enabled }); |
75 | 76 | ||
76 | if (this.enabled === enabled) return; | 77 | if (this.enabled === enabled) return; |
77 | this.enabled = enabled; | 78 | this.enabled = enabled; |