Skip to content

Commit

Permalink
fixed logging interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
filipw committed Oct 18, 2021
1 parent 2790ac6 commit c813815
Showing 1 changed file with 1 addition and 1 deletion.
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 c813815

Please # to comment.