mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-15 20:54:46 +00:00
Gather debug output fix
This commit is contained in:
@@ -97,7 +97,7 @@ namespace PepperDash.Core
|
||||
var output = Regex.Replace(args.Text,
|
||||
@"\p{Cc}",
|
||||
a => string.Format("[{0:X2}]", (byte)a.Value[0]));
|
||||
Debug.Console(2, Port, "RX: '{0}]", output);
|
||||
Debug.Console(2, Port, "RX: '{0}", output);
|
||||
}
|
||||
ReceiveBuffer.Append(args.Text);
|
||||
var str = ReceiveBuffer.ToString();
|
||||
@@ -135,7 +135,7 @@ namespace PepperDash.Core
|
||||
var output = Regex.Replace(args.Text,
|
||||
@"\p{Cc}",
|
||||
a => string.Format("[{0:X2}]", (byte)a.Value[0]));
|
||||
Debug.Console(2, Port, "RX: '{0}]", output);
|
||||
Debug.Console(2, Port, "RX: '{0}", output);
|
||||
}
|
||||
ReceiveBuffer.Append(args.Text);
|
||||
var str = ReceiveBuffer.ToString();
|
||||
|
||||
Reference in New Issue
Block a user