OE Debugger

put in the code you would like to debug:

Code:
DEBUGGER:INITIATE().
DEBUGGER:SET-BREAK().
And the debugger will start from that point.

Casper.
 
Casper,
Thanks for your reply. I am already in "attached mode" in the debugger and I would like the sequence of code execution to be redirected to a file. Would this be possible?

Thanks, Joel.

put in the code you would like to debug:

Code:
DEBUGGER:INITIATE().
DEBUGGER:SET-BREAK().
And the debugger will start from that point.

Casper.
 
Along with LOG command there is also
Session:execution-log that can be set to YES.
This will generate a proexec.log file that traces all the procedures executed and the paths to them.

-Parul.
 
Back
Top