From ba4e4f29ab346c217518d88de3e7307e05e4f1d7 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 3 Feb 2021 11:24:03 -0800 Subject: [PATCH] Fix a couple more logging statements --- SabreTools.DatTools/Writer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.DatTools/Writer.cs b/SabreTools.DatTools/Writer.cs index 9608ad58..044306d8 100644 --- a/SabreTools.DatTools/Writer.cs +++ b/SabreTools.DatTools/Writer.cs @@ -54,7 +54,7 @@ namespace SabreTools.DatTools // Ensure the output directory is set and created outDir = outDir.Ensure(create: true); - InternalStopwatch watch = new InternalStopwatch($"Writing out internal dat to {outDir}"); + InternalStopwatch watch = new InternalStopwatch($"Writing out internal dat to '{outDir}'"); // If the DAT has no output format, default to XML if (datFile.Header.DatFormat == 0) @@ -87,7 +87,7 @@ namespace SabreTools.DatTools } catch (Exception ex) when (!throwOnError) { - logger.Error(ex, $"Datfile {outfile} could not be written out"); + logger.Error(ex, $"Datfile '{outfile}' could not be written out"); } });