Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: debug the error!!!

by Ovid (Cardinal)
on Jun 09, 2000 at 22:30 UTC ( [id://17394]=note: print w/replies, xml ) Need Help??


in reply to debug the error!!!

You could try using the Perl debugger on this one. From the command line, type
perl -d PROGRAM
This starts your program with the Perl interactive debugger. Since your problem is at line 185, set a breakpoint at it once you are in the debugger.
b 185
Then 'c'ontinue the program and it will run until the breakpoint.
c
The next line of code you will see is line 185. Note: the debugger displays the line of code about to be executed. Then, print the value the suspect variable(s) that name be causing the problem.
p $variable1, " ", $variable2, " ", $variable3
The spaces are to prevent the vars from being run together.

Make sure you print them both before and after the code is run to see how they've changed. Particularly, print the value of any variables upon which a conditional depends.

At this point, step through the problem area one line at a time to check it's execution.

s
After stepping through each line, print out the value of the variables you wish to examine to see if anything is different from what you expect.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://17394]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-25 19:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found