diff --git a/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs b/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs index dee7440..87a1dcb 100644 --- a/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs +++ b/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs @@ -123,13 +123,6 @@ namespace PepperDash.Core { // Receive buffer should either be empty or not contain the delimiter // If the line does not have a delimiter, append the - if (Debug.Level >= 2) - { - var output = Regex.Replace(args.Text, - @"\p{Cc}", - a => string.Format("[{0:X2}]", (byte)a.Value[0])); - Debug.Console(2, Port, "RX: '{0}'", output); - } ReceiveBuffer.Append(args.Text); var str = ReceiveBuffer.ToString();