Skip to content

Commit

Permalink
Merge pull request #2264 from OmniSharp/script-messags
Browse files Browse the repository at this point in the history
improved Cake/CSX info messages
  • Loading branch information
filipw authored Nov 4, 2021
2 parents b712eab + 5a26e9c commit 4abc0f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OmniSharp.Cake/CakeProjectSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void Initalize(IConfiguration configuration)
var allCakeFiles = _fileSystemHelper.GetFiles("**/*.cake").ToArray();
if (allCakeFiles.Length == 0)
{
_logger.LogInformation("Could not find any Cake files");
_logger.LogInformation("Did not find any Cake files");
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/OmniSharp.Script/ScriptProjectSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void Initalize(IConfiguration configuration)

if (allCsxFiles.Length == 0)
{
_logger.LogInformation("Could not find any CSX files");
_logger.LogInformation("Did not find any CSX files");
Initialized = true;

// Watch CSX files in order to add/remove them in workspace
Expand Down

0 comments on commit 4abc0f2

Please # to comment.