aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-07 17:21:30 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-07 17:21:30 -0400
commite8322b4a12652004a19835d0f27390ff1335da16 (patch)
tree75139e9ab384a7a9ea5150954e7e69b550638c14 /MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs
parentc0125c03fd425e38eb7ecf7752aa585267a1fbbf (diff)
add mono CreateWebRequest workaround
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs b/MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs
index 44d8cc437..2adf3e86a 100644
--- a/MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs
+++ b/MediaBrowser.Server.Implementations/ServerManager/WebSocketConnection.cs
@@ -179,7 +179,8 @@ namespace MediaBrowser.Server.Implementations.ServerManager
if (!message.StartsWith("{", StringComparison.OrdinalIgnoreCase))
{
- _logger.Error("Received web socket message that is not a json structure: " + message);
+ // This info is useful sometimes but also clogs up the log
+ //_logger.Error("Received web socket message that is not a json structure: " + message);
return;
}