You're prossibly interested in watch expressions set with something along the lines of w $var which will show the old and new value whenever the watched expression changes values (and that can be an expression, not just a single variable; whenever the value of that expression is different the watch triggers). There's not much extra detail in the docs but if you search perldebug you can find this and play with a short test script:

w expr Add a global watch-expression. Whenever a watched glob +al changes the debugger will stop and display the old and + new values.

Alternately you might be interested in a conditional breakpoint which will only drop into the debugger if a supplied expression evaluates to true (unlike the typical unconditional breakpoint you get with the normal b LINE that always stops at line number LINE).

The cake is a lie.
The cake is a lie.
The cake is a lie.


In reply to Re: Have Perl debug automatically show modified values by Fletch
in thread Have Perl debug automatically show modified values by abdan

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.