Clean up the log statements

This commit is contained in:
Matt Nadareski
2021-02-03 11:22:09 -08:00
parent 1ae1087aad
commit 4de29860bd
16 changed files with 32 additions and 32 deletions

View File

@@ -118,7 +118,7 @@ namespace SabreTools.DatFiles.Formats
{
try
{
logger.User($"Writing to {outfile}...");
logger.User($"Writing to '{outfile}'...");
FileStream fs = File.Create(outfile);
// If we get back null for some reason, just log and return
@@ -163,7 +163,7 @@ namespace SabreTools.DatFiles.Formats
}
}
logger.User($"{outfile} written!{Environment.NewLine}");
logger.User($"'{outfile}' written!{Environment.NewLine}");
svw.Dispose();
fs.Dispose();
}