We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d77dc6 commit ba42b7cCopy full SHA for ba42b7c
src/LanguageServer.ts
@@ -111,6 +111,9 @@ export class LanguageServer {
111
void this.sendBusyStatus(status);
112
});
113
114
+ //disable logger colors when running in LSP mode
115
+ logger.enableColor = false;
116
+
117
//listen to all of the output log events and pipe them into the debug channel in the extension
118
this.loggerSubscription = logger.subscribe((message) => {
119
this.connection.tracer.log(message.argsText);
0 commit comments