OE Debugger

Would it possible to list out the sequence of execution of the OE code using a debugger? Could someone help me in this regard?
Thanks
Joel
 

Casper

ProgressTalk.com Moderator
Staff member
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.
 

parul

Member
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.
 
Top