diff options
author | fcolin | 2007-02-01 10:03:38 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:03:38 +0000 |
commit | 49c18dcbe58730bc077b0ccf6d3b473b23f6e018 (patch) | |
tree | 7cbcf11197336c22aeceb3a9631927c4e2d003ed /CSharp/Ivy/IvyPPC | |
parent | d81e659e2a8e6ce6ccae2e77ded063d86277c796 (diff) | |
download | ivy-csharp-49c18dcbe58730bc077b0ccf6d3b473b23f6e018.zip ivy-csharp-49c18dcbe58730bc077b0ccf6d3b473b23f6e018.tar.gz ivy-csharp-49c18dcbe58730bc077b0ccf6d3b473b23f6e018.tar.bz2 ivy-csharp-49c18dcbe58730bc077b0ccf6d3b473b23f6e018.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 17)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyWatcher.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyWatcher.cs b/CSharp/Ivy/IvyPPC/IvyWatcher.cs index 47b2239..31fb072 100644 --- a/CSharp/Ivy/IvyPPC/IvyWatcher.cs +++ b/CSharp/Ivy/IvyPPC/IvyWatcher.cs @@ -213,7 +213,7 @@ namespace IvyBus [Conditional("DEBUG")]
private static void traceDebug(string s)
{
- Trace.WriteLineIf(Ivy.VerboseDebug, "-->ivywatcher<-- " + s);
+ Trace.Assert(!Ivy.VerboseDebug, "-->ivywatcher<-- " + s);
}
}
|