diff --git a/src/features/status.ts b/src/features/status.ts index a28109a325..718a31dc22 100644 --- a/src/features/status.ts +++ b/src/features/status.ts @@ -241,7 +241,10 @@ export function reportServerStatus(server: OmniSharpServer): vscode.Disposable{ message.Errors.forEach(error => asErrorMessage); message.Warnings.forEach(warning => asWarningMessage); appendLine(); - showMessageSoon(); + + if (message.Errors.length > 0) { + showMessageSoon(); + } } });