Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Rightly or wrongly, I use the debugger. I use it all the time to step through code that I have inherited. Along the way I have run across a few debugger idioms that have been invaluable to my code archiology.

Please respond and share your debugger idioms!

  • Write intermediate data to a file
  • In some cases, while debugging, it is helpful to capture an intermediate data structure for reference. I find this particularly useful for dumping out xml content that is generated.

    DB<3> open FH, ">/tmp/foo.txt"; DB<4> print FH "THIS IS AN EXAMPLE"; DB<5> print FH $user_id; DB<6> close FH
  • Step into an expression
  • You can evaluate any valid perl expression with x while in the debugger. However you can also step into that expression using s. For example:

    DB<6> s $profile->to_xml() main::((eval 35)[/usr/lib/perl5/5.6.1/perl5db.pl:1521]:3): 3: $profile->to_xml(); DB<<7>>

    At this point, you will be stepping through the expression that was entered on the previous line.

  • break the debugger from code
  • Put the following expression somewhere in your code, run it in the debugger and the debugger will stop on the line immediately following it.

    $DB::single = 1;

There are many more debugger idioms out there, what are yours?

Hazah! I'm Employed! (But still looking...)


In reply to Neat Debugger tricks by osunderdog

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (7)
As of 2024-04-19 09:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found