Skip to content

Commit

Permalink
Merge pull request #2246 from OmniSharp/bugfix/logging-projectFilePath
Browse files Browse the repository at this point in the history
fixed logging interpolation in ProjectManager
  • Loading branch information
filipw authored Oct 19, 2021
2 parents 2790ac6 + 079cb5d commit e705ec3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

- job: Release
pool:
vmImage: "Ubuntu-16.04"
vmImage: "Ubuntu-latest"
dependsOn:
- macOS
- Linux
Expand Down
2 changes: 1 addition & 1 deletion src/OmniSharp.MSBuild/ProjectManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ private void ProcessQueue(CancellationToken cancellationToken)
}
catch (Exception ex)
{
_logger.LogError(ex, "Failed to load project file '{projectFilePath}'.");
_logger.LogError(ex, $"Failed to load project file '{projectFilePath}'.");
_eventEmitter.Error(ex, fileName: projectFilePath);
return (null, null);
}
Expand Down

0 comments on commit e705ec3

Please # to comment.