Fix a couple more logging statements

This commit is contained in:
Matt Nadareski
2021-02-03 11:24:03 -08:00
parent 4de29860bd
commit ba4e4f29ab

View File

@@ -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");
}
});