From 57c83086be13d0dd61722b9f5d9e6c7a238b1532 Mon Sep 17 00:00:00 2001 From: Nick Genovese Date: Fri, 1 Nov 2024 15:51:36 -0400 Subject: [PATCH] fix: device debug settings method missing --- src/Pepperdash.Core/Comm/CommunicationStreamDebugging.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Pepperdash.Core/Comm/CommunicationStreamDebugging.cs b/src/Pepperdash.Core/Comm/CommunicationStreamDebugging.cs index 0a38d82..207a9fe 100644 --- a/src/Pepperdash.Core/Comm/CommunicationStreamDebugging.cs +++ b/src/Pepperdash.Core/Comm/CommunicationStreamDebugging.cs @@ -100,8 +100,6 @@ namespace PepperDash.Core if ((setting & eStreamDebuggingSetting.Tx) == eStreamDebuggingSetting.Tx) TxStreamDebuggingIsEnabled = true; - - Debug.SetDeviceDebugSettings(ParentDeviceKey, setting); } @@ -111,8 +109,6 @@ namespace PepperDash.Core private void DisableDebugging() { StopDebugTimer(); - - Debug.SetDeviceDebugSettings(ParentDeviceKey, eStreamDebuggingSetting.Off); } private void StopDebugTimer()