Prevent config warnings from stealing user focus (#6310)

This commit is contained in:
Colen Garoutte-Carson
2020-10-13 19:45:57 -07:00
committed by GitHub
parent 9dfb2c6060
commit 89f609d70b
+1 -1
View File
@@ -135,7 +135,7 @@ function showWarning(params: ShowWarningParams): void {
workspaceDisposables.push(warningChannel);
}
warningChannel.appendLine(`[${new Date().toLocaleString()}] ${message}`);
warningChannel.show(false);
warningChannel.show(true);
}
function publishDiagnostics(params: PublishDiagnosticsParams): void {