From 5360744482c1f65f1e34271e0fbb044ef1d66dcb Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 19 Apr 2016 13:35:38 -0700 Subject: [PATCH] Make error more descriptive. --- SabreHelper/RomManipulation.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SabreHelper/RomManipulation.cs b/SabreHelper/RomManipulation.cs index 5c57a172..3398a1b7 100644 --- a/SabreHelper/RomManipulation.cs +++ b/SabreHelper/RomManipulation.cs @@ -79,9 +79,7 @@ namespace SabreTools.Helper // There are rare cases where a malformed XML will not have the required attributes. We can only skip them. if (node.Attributes.Count == 0) { - logger.Error(@"A node with malformed XML has been found! - For RV DATs, please make sure that all names and descriptions are quoted. - For XML DATs, make sure that the DAT has all required information."); + logger.Error("No attributes were found"); node = node.NextSibling; continue; }