summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:03:38 +0000
committerfcolin2007-02-01 10:03:38 +0000
commit49c18dcbe58730bc077b0ccf6d3b473b23f6e018 (patch)
tree7cbcf11197336c22aeceb3a9631927c4e2d003ed
parentd81e659e2a8e6ce6ccae2e77ded063d86277c796 (diff)
downloadivy-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)
-rw-r--r--CSharp/Ivy/IvyPPC/IvyWatcher.cs2
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);
}
}