Minor tweak to Wise debug statements

This commit is contained in:
Matt Nadareski
2025-10-17 09:56:04 -04:00
parent 1d9e12183f
commit 94a9cf0c3f

View File

@@ -634,7 +634,7 @@ namespace SabreTools.Serialization.Wrappers
var header = WiseOverlayHeader.Create(source);
if (header == null)
{
if (includeDebug) Console.Error.WriteLine("Could not parse the overlay header");
if (includeDebug) Console.Error.WriteLine("Could not parse a Wise overlay header");
return false;
}
@@ -642,7 +642,7 @@ namespace SabreTools.Serialization.Wrappers
bool extracted = header.ExtractHeaderDefinedFiles(outputDirectory, includeDebug);
if (!extracted)
{
if (includeDebug) Console.Error.WriteLine("Could not extract header-defined files");
if (includeDebug) Console.Error.WriteLine("Could not extract Wise overlay header-defined files");
return false;
}
@@ -676,7 +676,7 @@ namespace SabreTools.Serialization.Wrappers
var header = WiseSection;
if (header == null)
{
if (includeDebug) Console.Error.WriteLine("Could not parse the section header");
if (includeDebug) Console.Error.WriteLine("Could not parse a Wise section header");
return false;
}