From 7782f8747d2d7390e2b4f9a9101262084f5d0108 Mon Sep 17 00:00:00 2001 From: Joshua Gutenplan Date: Fri, 14 Jun 2019 15:49:03 -0700 Subject: [PATCH] Fix debug statement for secure client & server to remove the udp ref --- .../Pepperdash Core/Comm/GenericSecureTcpIpClient_ForServer.cs | 2 +- .../Pepperdash Core/Comm/GenericSecureTcpIpServer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpClient_ForServer.cs b/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpClient_ForServer.cs index d8088a3..334824a 100644 --- a/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpClient_ForServer.cs +++ b/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpClient_ForServer.cs @@ -652,7 +652,7 @@ namespace PepperDash.Core } catch (Exception e) { - Debug.Console(0, "GenericUdpServer DequeueEvent error: {0}\r", e); + Debug.Console(0, "DequeueEvent error: {0}\r", e); } // Make sure to leave the CCritical section in case an exception above stops this thread, or we won't be able to restart it. if (DequeueLock != null) diff --git a/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpServer.cs b/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpServer.cs index cff8361..3f21ac3 100644 --- a/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpServer.cs +++ b/Pepperdash Core/Pepperdash Core/Comm/GenericSecureTcpIpServer.cs @@ -871,7 +871,7 @@ namespace PepperDash.Core } catch (Exception e) { - Debug.Console(0, "GenericUdpServer DequeueEvent error: {0}\r", e); + Debug.Console(0, "DequeueEvent error: {0}\r", e); } // Make sure to leave the CCritical section in case an exception above stops this thread, or we won't be able to restart it. if (DequeueLock != null)