Skip to content

Commit

Permalink
log tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
SirSparkles committed Jul 29, 2023
1 parent 071a0b5 commit 0ff506d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TVRename/Utility/Helper/UiHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static bool ShowDialogAndOk(FolderBrowserDialogEx d, IWin32Window owner)
}
catch (Win32Exception ex)
{
Logger.Error(ex, $"Failed to load dialog for {d.SelectedPath}");
Logger.Error(ex, $"Failed to load dialog for '{d.SelectedPath}'");
return false;
}
}
Expand All @@ -43,7 +43,7 @@ public static bool ShowDialogAndOk(FolderBrowserDialog d, IWin32Window owner)
}
catch (Win32Exception ex)
{
Logger.Error(ex, $"Failed to load dialog for {d.SelectedPath}");
Logger.Error(ex, $"Failed to load dialog for '{d.SelectedPath}'");
return false;
}
}
Expand Down

0 comments on commit 0ff506d

Please sign in to comment.