
princepawn
Novice
Sep 25, 2000, 9:32 AM
Post #1 of 1
(811 views)
|
|
Autotracing Perl Programs
|
Can't Post
|
|
I am trying to get a trace of my program execution. However, even though I am trying to set the environmental variables to effect program tracing it doesnt seem to work. Here is the code I was working with: $ENV{NonStop} = 1; $ENV{LineInfo} = 'db.out'; $ENV{AutoTrace} = 1; $ENV{frame} = 2; $ENV{PERLDB_OPTS}='NonStop frame=2 AutoTrace LineInfo=debug.out'; $x=1; $y=20+ 20; $z = $x+$y; print $z,$/;
|