From 690b2628f6d90501f94cba0c69226e61462d5b6f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 18 May 2016 20:12:58 -0700 Subject: [PATCH] Change an Error back to Warning --- SabreHelper/RomManipulation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreHelper/RomManipulation.cs b/SabreHelper/RomManipulation.cs index 00d69ed7..4be02e11 100644 --- a/SabreHelper/RomManipulation.cs +++ b/SabreHelper/RomManipulation.cs @@ -345,7 +345,7 @@ namespace SabreTools.Helper // 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)) { - 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; }