http://www.perlmonks.org?node_id=950645


in reply to Re: perldb: Howto trace only "my" modules?
in thread perldb: Howto trace only "my" modules?

Thanks for the links.

I was aware that I can overload internal DB:: functions, (sorry for not mentioning)

I just had the hope that I could solve this with an *option* (CLI or .perldb).

Actually in this case I think I have to overload DB::sub like demonstrated in perldebguts

{ package DB; sub DB {} sub sub {print ++$i, " $sub\n"; &$sub} }
Thanks anyway! :)