untrace
untrace( [s_function|t_fileName... |t] ) =>g_result
Description
Turns tracing off for all functions specified that were traced using the tracef function. This is an nlambda function.
If the argument is a string, untrace assumes it is a file name and checks if the file was loaded after debug mode was turned on. If it was, it untraces all functions defined in that file.
Arguments
|
Any file containing functions that should no longer be traced. |
|
|
Turns off tracing for all functions that had tracing turned on. |
Value Returned
Examples
Turn off tracing for the plus function.
untrace( plus)
Turns off tracing for all functions in the testfns file assuming it was loaded after debug mode was turned on.
untrace( "testfns")
untrace( t )
Related Topics
Return to top