aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-08 17:16:27 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-08 17:16:27 -0400
commita0fea896fddcacaeaaca112d4f6f3b1c582c1436 (patch)
treece927c59170eb1b75178ed8b530378bbc202e7f2 /MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs
parent8398a5a32e98e5ae00e7f463b6ec009b1ef0c3e2 (diff)
make socket logging message more descriptive
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs b/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs
index e96492317..c1e8d2877 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs
@@ -116,7 +116,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
if (result.CloseStatus.HasValue)
{
- _logger.Info("Web socket connection closed.");
+ _logger.Info("Web socket connection closed by client.");
return null;
}
@@ -169,6 +169,10 @@ namespace MediaBrowser.Server.Implementations.HttpServer
/// <value>The receive action.</value>
public Action<byte[]> OnReceiveBytes { get; set; }
+ /// <summary>
+ /// Gets or sets the on receive.
+ /// </summary>
+ /// <value>The on receive.</value>
public Action<string> OnReceive { get; set; }
}
}