fix: device debug settings method missing

This commit is contained in:
Nick Genovese
2024-11-01 15:51:36 -04:00
parent 41a3cd7fcd
commit 57c83086be

View File

@@ -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()