From 922a33690b60f1f2f01df8b300386f7a50339d0d Mon Sep 17 00:00:00 2001 From: Jim Norman Date: Thu, 13 Oct 2005 19:53:40 +0000 Subject: [PATCH] Remove Console.WriteLine --- c_micasad/lib/communication/UnixIPCClientChannel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c_micasad/lib/communication/UnixIPCClientChannel.cs b/c_micasad/lib/communication/UnixIPCClientChannel.cs index 2aef6b7e..a043598a 100644 --- a/c_micasad/lib/communication/UnixIPCClientChannel.cs +++ b/c_micasad/lib/communication/UnixIPCClientChannel.cs @@ -37,7 +37,7 @@ namespace Novell.CASA.MiCasa.Communication if (buf != null) { - Console.WriteLine("Bytes read = " + buf.Length); + //Console.WriteLine("Bytes read = " + buf.Length); return buf.Length; } else @@ -104,7 +104,7 @@ namespace Novell.CASA.MiCasa.Communication try { mSocket.Send(buf); - Console.WriteLine("Bytes written = " + buf.Length); + //Console.WriteLine("Bytes written = " + buf.Length); return buf.Length; } catch (Exception e)