From 4d53e6b33e92107a962a599978944c4012795ba3 Mon Sep 17 00:00:00 2001 From: Trevor Payne Date: Wed, 19 Aug 2020 17:07:11 -0500 Subject: [PATCH] Resolves #16 Changed some error messages to notices in LoadRooms() to make them a little less spooky --- PepperDashEssentials/ControlSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PepperDashEssentials/ControlSystem.cs b/PepperDashEssentials/ControlSystem.cs index fb10a055..8803dc6c 100644 --- a/PepperDashEssentials/ControlSystem.cs +++ b/PepperDashEssentials/ControlSystem.cs @@ -443,7 +443,7 @@ namespace PepperDash.Essentials { if (ConfigReader.ConfigObject.Rooms == null) { - Debug.Console(0, Debug.ErrorLogLevel.Warning, "WARNING: Configuration contains no rooms"); + Debug.Console(0, Debug.ErrorLogLevel.Notice, "Notice: Configuration contains no rooms - Is this intentional? This may be a valid configuration."); return; } @@ -491,7 +491,7 @@ namespace PepperDash.Essentials } else - Debug.Console(0, Debug.ErrorLogLevel.Notice, "WARNING: Cannot create room from config, key '{0}'", roomConfig.Key); + Debug.Console(0, Debug.ErrorLogLevel.Notice, "Notice: Cannot create room from config, key '{0}' - Is this intentional? This may be a valid configuration.", roomConfig.Key); } Debug.Console(0, Debug.ErrorLogLevel.Notice, "All Rooms Loaded.");