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

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