From 846c7d220d9e5448afd77763cab509a9a1243e3d Mon Sep 17 00:00:00 2001 From: Marc Date: Thu, 4 Apr 2013 19:17:27 -0700 Subject: [PATCH] Log exceptions for sending. --- Conn.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Conn.cs b/Conn.cs index 273a421..4b1c5c0 100644 --- a/Conn.cs +++ b/Conn.cs @@ -79,8 +79,9 @@ public class Conn m_streamNet.Flush(); } - catch( Exception ) + catch( Exception e ) { + lib.Log.warn( "Exception sending obj {0} of {1}", obj, e ); //m_streamNet.Close(); //m_socket.Close(); }