diff options
author | fcolin | 2007-02-01 09:43:30 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:43:30 +0000 |
commit | 3646f74c3553f72e176a54348f10d9655e721e95 (patch) | |
tree | 03c146ba2250efc96fcf6556c45893eb427e2d38 /CSharp | |
parent | 12bac66eea811e203a212d080a92836e696472b4 (diff) | |
download | ivy-csharp-3646f74c3553f72e176a54348f10d9655e721e95.zip ivy-csharp-3646f74c3553f72e176a54348f10d9655e721e95.tar.gz ivy-csharp-3646f74c3553f72e176a54348f10d9655e721e95.tar.bz2 ivy-csharp-3646f74c3553f72e176a54348f10d9655e721e95.tar.xz |
Utilisateur : Fcolin Date : 6/02/06 Heure : 17:23 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: Assert au lieu de WriteLine ==> support dans le Compact FrameWork (vss 47)
Diffstat (limited to 'CSharp')
-rw-r--r-- | CSharp/Ivy/Ivy/Ivy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs index 474d213..26a4ac9 100644 --- a/CSharp/Ivy/Ivy/Ivy.cs +++ b/CSharp/Ivy/Ivy/Ivy.cs @@ -934,7 +934,7 @@ namespace IvyBus [Conditional("DEBUG")]
private void traceDebug(string s)
{
- Trace.WriteLineIf(debug, "-->ivy<-- " + s);
+ Trace.Assert(!debug, "-->ivy<-- " + s);
}
internal class Domain
|