Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Reduce noise from RX_TRACE slightly
  • Loading branch information
sorear committed May 27, 2012
1 parent f54d02c commit c146c95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/Cursor.cs
Expand Up @@ -724,8 +724,10 @@ public sealed class RxFrame: IFreeze {
}
}
if (Cursor.Trace)
Console.WriteLine("Matching {0} from {1} to {2} (really {3}-{4})",
name, use_from, use_to, from, st.pos);
Console.WriteLine((use_from == from && use_to == st.pos) ?
"Matching {0} from {1} to {2}" :
"Matching {0} from {1} to {2} (really {3}-{4})",
name, use_from, use_to, from, st.pos);
_matchObj = new Cursor(global, st.ns.klass, use_from, use_to,
st.captures, ast, name);
return global.CallAction(th, name, _matchObj);
Expand Down

0 comments on commit c146c95

Please sign in to comment.