From 08a0cdfddd9ce8f2237b50c94684a2c2d4b88191 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 6 Jul 2020 12:53:54 -0600 Subject: [PATCH] update debug statements to be level 2 --- .../PepperDashEssentialsBase/Bridges/BridgeBase.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Bridges/BridgeBase.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Bridges/BridgeBase.cs index 0919335d..4f41cf83 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Bridges/BridgeBase.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Bridges/BridgeBase.cs @@ -190,11 +190,11 @@ namespace PepperDash.Essentials.Core.Bridges var uo = Eisc.BooleanOutput[join].UserObject as Action; if (uo != null) { - Debug.Console(1, this, "Executing Action: {0}", uo.ToString()); + Debug.Console(2, this, "Executing Action: {0}", uo.ToString()); uo(Convert.ToBoolean(state)); } else - Debug.Console(1, this, "User Action is null. Nothing to Execute"); + Debug.Console(2, this, "User Action is null. Nothing to Execute"); break; } case "analog": @@ -202,27 +202,27 @@ namespace PepperDash.Essentials.Core.Bridges var uo = Eisc.BooleanOutput[join].UserObject as Action; if (uo != null) { - Debug.Console(1, this, "Executing Action: {0}", uo.ToString()); + Debug.Console(2, this, "Executing Action: {0}", uo.ToString()); uo(Convert.ToUInt16(state)); } else - Debug.Console(1, this, "User Action is null. Nothing to Execute"); break; + Debug.Console(2, this, "User Action is null. Nothing to Execute"); break; } case "serial": { var uo = Eisc.BooleanOutput[join].UserObject as Action; if (uo != null) { - Debug.Console(1, this, "Executing Action: {0}", uo.ToString()); + Debug.Console(2, this, "Executing Action: {0}", uo.ToString()); uo(Convert.ToString(state)); } else - Debug.Console(1, this, "User Action is null. Nothing to Execute"); + Debug.Console(2, this, "User Action is null. Nothing to Execute"); break; } default: { - Debug.Console(1, "Unknown join type. Use digital/serial/analog"); + Debug.Console(2, "Unknown join type. Use digital/serial/analog"); break; } }