Re: request for 2.5
- Posted by Robert Craig <rds at RapidEuphoria.com> Oct 14, 2004
- 475 views
Kat wrote: > RobC, can we get a local way in functions/procedures, to turn on/off tracing, > regardless of if it is with or without in the main? You already have two levels of control over tracing:
with trace -- generates slower IL code that supports tracing procedure myproc() ... if something_funny_just_happened then trace(1) -- or trace(3) end if ... ... trace(0) ... end procedure without trace
Why would you want even finer control?. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com