diff options
author | fcolin | 2007-02-01 09:45:39 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:45:39 +0000 |
commit | 9d2a866fef410ea40473a6b098c1a9a16253e291 (patch) | |
tree | daf6a38247e3b1b6cc32e3f72868b90a02730f35 | |
parent | 54b0e5a30327525700dfba07de77aef5d78d08dd (diff) | |
download | ivy-csharp-9d2a866fef410ea40473a6b098c1a9a16253e291.zip ivy-csharp-9d2a866fef410ea40473a6b098c1a9a16253e291.tar.gz ivy-csharp-9d2a866fef410ea40473a6b098c1a9a16253e291.tar.bz2 ivy-csharp-9d2a866fef410ea40473a6b098c1a9a16253e291.tar.xz |
Utilisateur : Fcolin Date : 17/10/06 Heure : 18:36 Archivé dans $/CSharp/Ivy/Ivy Commentaire: modification debug et correction bug stream UDP pas reseté (vss 11)
-rw-r--r-- | CSharp/Ivy/Ivy/IvyBinding.cs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/CSharp/Ivy/Ivy/IvyBinding.cs b/CSharp/Ivy/Ivy/IvyBinding.cs index 4e48054..624b401 100644 --- a/CSharp/Ivy/Ivy/IvyBinding.cs +++ b/CSharp/Ivy/Ivy/IvyBinding.cs @@ -92,7 +92,7 @@ namespace IvyBus args_values[arg[0]] = arg[1];
else
{
- traceDebug("abnormally Formed message expected 'msg champ=valeur champ=valeur....' :" + message);
+ Ivy.traceError("IvyBindingSimple" , "abnormally Formed message expected 'msg champ=valeur champ=valeur....' :" + message);
}
}
@@ -113,10 +113,6 @@ namespace IvyBus }
return args;
}
- [Conditional("DEBUG")]
- private static void traceDebug(string s)
- {
- Trace.Assert(false,"-->IvyBindingSimple<-- " + s);
- }
+
}
}
|