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

@@ -337,7 +337,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
@@ -400,7 +400,7 @@ namespace SabreTools.DatFiles.Formats
// Write the file footer out
WriteFooter(jtw);
logger.User($"{outfile} written!{Environment.NewLine}");
logger.User($"'{outfile}' written!{Environment.NewLine}");
jtw.Close();
fs.Dispose();
}