Re: new feature request: determining what the trace level is
- Posted by jimcbrown (admin) Sep 15, 2010
- 1180 views
alanjohnoxley said...
Hi,
To easily restrict tracing to the bits of code I am interested in, (mine :)) a new function "trace_level" would be useful.
If you use a "without trace" line, then include your libraries, then add a "with trace" line underneath, like this:
without trace include std/search.e include other_trusted_library.e with trace include untrusted_and_buggy_library.e
then, trace(1) will automatically skip over the routines in the trusted libraries, and only trace through your code.