Fix debug statement for secure client & server to remove the udp ref

This commit is contained in:
Joshua Gutenplan
2019-06-14 15:49:03 -07:00
parent b1e3102455
commit 7782f8747d
2 changed files with 2 additions and 2 deletions

View File

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

View File

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