Reputation: 53
I write some little log files where i can see from which program something is called with the help of
PROGRAM-NAME(i)
.
It would be really interesting if I could also get information about my variables, handles, buffers, ... and where they are defined.
SOURCE-PROCEDURE:GET-SIGNATURE
is a little step in the right way, but this gives me only the possible input and output of my source-procedure.
Upvotes: 1
Views: 242
Reputation: 3251
If you want a lot of run-time data check out the "LOG-MANAGER" handle in general, particularly the 4GLTrace setting.
Upvotes: 1
Reputation: 7192
Handle based objects have an INSTANTIATING-PROCEDURE property of type handle, that references the handle of the procedure that created the instance.
Alternative, if the Dynobjects.* log-manager entry type to get that information when an handle based object is created and deleted in the current client log file.
Upvotes: 2