From 62f182c63443c36dca3a17aff81ccc917269d3eb Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 14 Mar 2024 22:28:26 -0600 Subject: [PATCH] debug: removes annoying console statements at startup --- src/PepperDash.Essentials.Core/Plugins/PluginLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PepperDash.Essentials.Core/Plugins/PluginLoader.cs b/src/PepperDash.Essentials.Core/Plugins/PluginLoader.cs index e79075a6..d3f3d8b3 100644 --- a/src/PepperDash.Essentials.Core/Plugins/PluginLoader.cs +++ b/src/PepperDash.Essentials.Core/Plugins/PluginLoader.cs @@ -371,9 +371,9 @@ namespace PepperDash.Essentials { try { - Debug.Console(0, $"Checking if type {type.Name} is IPluginDeviceFactory"); + //Debug.Console(0, $"Checking if type {type.Name} is IPluginDeviceFactory"); - Debug.Console(0, $"{type.Name} is plugin factory: {typeof(IPluginDeviceFactory).IsAssignableFrom(type) && !type.IsAbstract}"); + //Debug.Console(0, $"{type.Name} is plugin factory: {typeof(IPluginDeviceFactory).IsAssignableFrom(type) && !type.IsAbstract}"); if (typeof (IPluginDeviceFactory).IsAssignableFrom(type) && !type.IsAbstract) {