fix: minor adjustments to debug statement levels

This commit is contained in:
Neil Dorin
2023-11-23 15:33:22 -07:00
parent 5931c1fb78
commit 58fcd91fa2

View File

@@ -214,7 +214,7 @@ namespace PepperDash.Core
base.OnOpen();
var url = Context.WebSocket.Url;
Debug.Console(2, Debug.ErrorLogLevel.Notice, "New WebSocket Connection from: {0}", url);
Debug.Console(0, Debug.ErrorLogLevel.Notice, "New WebSocket Connection from: {0}", url);
_connectionTime = DateTime.Now;
}
@@ -230,7 +230,7 @@ namespace PepperDash.Core
{
base.OnClose(e);
Debug.Console(2, Debug.ErrorLogLevel.Notice, "WebSocket UiClient Closing: {0} reason: {1}", e.Code, e.Reason);
Debug.Console(0, Debug.ErrorLogLevel.Notice, "WebSocket UiClient Closing: {0} reason: {1}", e.Code, e.Reason);
}