Skip to content

Commit

Permalink
Logging improved
Browse files Browse the repository at this point in the history
  • Loading branch information
WetHat committed Feb 3, 2023
1 parent 2c1176a commit cba0c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OneNoteTaggingKit/Tagger/BackgroundTagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public Task Run()
case 0x80042014: // page not found
failed++;
if (muted.Contains(0x80042014)) {
TraceLogger.Log(TraceCategory.Error(), Properties.Resources.TaggingKit_Error_PageNotFound, ce);
TraceLogger.Log(TraceCategory.Error(), "{0} - {1}", Properties.Resources.TaggingKit_Error_PageNotFound, ce);
} else {
TraceLogger.ShowGenericErrorBox(Properties.Resources.TaggingKit_Error_PageNotFound, ce);
muted.Add(0x80042014); // show dialog only once
Expand Down

0 comments on commit cba0c61

Please sign in to comment.