diff options
-rw-r--r-- | CSharp/Ivy/IvyPPC/Ivy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs index 474d213..26a4ac9 100644 --- a/CSharp/Ivy/IvyPPC/Ivy.cs +++ b/CSharp/Ivy/IvyPPC/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
|