Skip to content

Commit

Permalink
fix: PDF -> PDB Typo (dotnet#8713)
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarKlintrot authored and p-kostov committed Jun 28, 2024
1 parent 31e4454 commit 5d76eeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ partial class SymbolUrlResolver
var pdbPath = Path.ChangeExtension(pe.FilePath, ".pdb");
if (!File.Exists(pdbPath))
{
Logger.LogVerbose($"No PDF file found for {pe.FilePath}, skip loading source link.");
Logger.LogVerbose($"No PDB file found for {pe.FilePath}, skip loading source link.");
return null;
}

Expand Down

0 comments on commit 5d76eeb

Please sign in to comment.