From 11c226f8d17f561a2cbf2408c515f03721bd0d75 Mon Sep 17 00:00:00 2001 From: Marc Date: Thu, 4 Apr 2013 19:51:57 -0700 Subject: [PATCH] Stop logging sent data. --- Conn.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Conn.cs b/Conn.cs index 4b1c5c0..10e395c 100644 --- a/Conn.cs +++ b/Conn.cs @@ -71,7 +71,7 @@ public class Conn //var str = System.Text.Encoding.Default.GetString( mm_buffer, 0, (int)ms.Position ); //lib.Log.info( "Sent data {0} of length {1}", str, ms.Position ); - lib.Log.info( "Sent {0}", obj ); + //lib.Log.info( "Sent {0}", obj ); byte[] byteSize = BitConverter.GetBytes( (uint)ms.Position ); m_streamNet.Write( byteSize, 0, 4 );