Change an Error back to Warning

This commit is contained in:
Matt Nadareski
2016-05-18 20:12:58 -07:00
parent 780c9a6ab8
commit 690b2628f6

View File

@@ -345,7 +345,7 @@ namespace SabreTools.Helper
// If the file has no size and it's not the above case, skip and log // If the file has no size and it's not the above case, skip and log
else if (subreader.Name == "rom" && (size == 0 || size == -1)) else if (subreader.Name == "rom" && (size == 0 || size == -1))
{ {
logger.Error("Incomplete entry for \"" + xtr.GetAttribute("name") + "\" will be output as nodump"); logger.Warning("Incomplete entry for \"" + xtr.GetAttribute("name") + "\" will be output as nodump");
nodump = true; nodump = true;
} }