debug: removes annoying console statements at startup

This commit is contained in:
Neil Dorin
2024-03-14 22:28:26 -06:00
parent 8ae8a3ef41
commit 62f182c634

View File

@@ -371,9 +371,9 @@ namespace PepperDash.Essentials
{ {
try 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) if (typeof (IPluginDeviceFactory).IsAssignableFrom(type) && !type.IsAbstract)
{ {