Skip to content

Commit

Permalink
Merge pull request #1189 from DustinCampbell/dont-complain-about-warn…
Browse files Browse the repository at this point in the history
…ings

Don't show message about projects having trouble loading when there are only warnings
  • Loading branch information
DustinCampbell authored Feb 6, 2017
2 parents 9c10778 + a881a97 commit ab543e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/features/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}
});

Expand Down

0 comments on commit ab543e9

Please sign in to comment.