mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-02 14:24:49 +00:00
Update CommunicationStreamDebugging.cs
Removed unneeded change to convert item to string.
This commit is contained in:
@@ -97,7 +97,7 @@ namespace PepperDash.Core
|
||||
if ((setting & eStreamDebuggingSetting.Tx) == eStreamDebuggingSetting.Tx)
|
||||
TxStreamDebuggingIsEnabled = true;
|
||||
|
||||
Debug.SetDeviceDebugSettings(ParentDeviceKey, setting.ToString());
|
||||
Debug.SetDeviceDebugSettings(ParentDeviceKey, setting);
|
||||
|
||||
}
|
||||
|
||||
@@ -116,7 +116,7 @@ namespace PepperDash.Core
|
||||
RxStreamDebuggingIsEnabled = false;
|
||||
TxStreamDebuggingIsEnabled = false;
|
||||
|
||||
Debug.SetDeviceDebugSettings(ParentDeviceKey, eStreamDebuggingSetting.Off.ToString());
|
||||
Debug.SetDeviceDebugSettings(ParentDeviceKey, eStreamDebuggingSetting.Off);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -131,4 +131,4 @@ namespace PepperDash.Core
|
||||
Tx = 2,
|
||||
Both = Rx | Tx
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user