diff options
author | fcolin | 2007-02-01 10:01:54 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:01:54 +0000 |
commit | 2e89aedcc32c97042663136338d39d22ab977b4c (patch) | |
tree | a53fa3e03a0fa6e799ce11b72753b5fd9fbfc6c1 /CSharp/Ivy | |
parent | 3b9a1f75387d365e1bcfe18daedc673d91b85b8e (diff) | |
download | ivy-csharp-2e89aedcc32c97042663136338d39d22ab977b4c.zip ivy-csharp-2e89aedcc32c97042663136338d39d22ab977b4c.tar.gz ivy-csharp-2e89aedcc32c97042663136338d39d22ab977b4c.tar.bz2 ivy-csharp-2e89aedcc32c97042663136338d39d22ab977b4c.tar.xz |
Utilisateur : Fcolin Date : 6/02/06 Heure : 17:12 Archivé dans $/CSharp/Ivy/Ivy Commentaire: utilisation generale de traceDEbug et System.Diagnostics (vss 7)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs b/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs index f5bf292..4b049fc 100644 --- a/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs +++ b/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs @@ -55,10 +55,6 @@ namespace IvyBus private void sendMsg(MessageType msgType, ushort msgId, string msgData)
{
-#if DEBUG
- Console.Error.WriteLine(" sendMsg {0} id={1} data={2}", msgType, msgId, msgData);
-#endif
-
output.Write((ushort)msgType);
output.Write( ' ' );
output.Write( msgId );
@@ -171,9 +167,7 @@ namespace IvyBus msgType = (MessageType)DeserializeShort();
msgId = DeserializeShort();
msgData = DeserializeString(MSG_END);
-#if DEBUG
- Console.Error.WriteLine(" receiveMsg {0} id={1} data={2}", msgType, msgId, msgData);
-#endif
+
switch (msgType)
{
case MessageType.Die:
|