diff options
Diffstat (limited to 'CSharp')
-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);
}
}
|