From 85ff491c5447f6d4c79806924ff2928e759efb95 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 21 Nov 2016 15:38:56 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/WebSocket.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 3b708637..f59f7387 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -1650,10 +1650,14 @@ namespace WebSocketSharp } catch (Exception ex) { _logger.Error (ex.ToString ()); - error ("An exception has occurred during a send callback.", ex); + error ( + "An exception has occurred during the callback for an async send.", + ex + ); } }, - null); + null + ); } private bool sendBytes (byte[] bytes)