Not anytime soon.
The docs are not correct and will be updated. As you have already discovered, it currently reads
This isn't as helpful as having line numbers, but you can sporadically add your own custom messages to the program log using 'logmsg'.
I would add several calls to logmsg around where you think the problem made be occurring. Here is an example on how to use logmsg:
The docs are not correct and will be updated. As you have already discovered, it currently reads
It should read[Hide/Do not hide] the program line number when reporting errors encountered during execution.
[Hide/Do not hide] the program line when reporting errors encountered during execution.
This isn't as helpful as having line numbers, but you can sporadically add your own custom messages to the program log using 'logmsg'.
I would add several calls to logmsg around where you think the problem made be occurring. Here is an example on how to use logmsg:
Code:
logmode logmsg
logmsg creating workfile
create u 10
logmsg creating 2 series
series x=rnd
series y= x+1
logmsg entering for loop
for !i=1 to 10
%s = @str(!i)
logmsg %s
next
logmsg finished