I hate Perl's debugger

Ovid on 2006-02-25T00:38:38

<rant>I can't tell you how many times I've worked on applications where I try to run Perl's debugger and the debugger just freezes. I've never used a debugger in any other language which is so fragile</rant> :(


huh

da on 2006-02-25T01:20:46

Due to the overhead the debugger adds to processing times? That's bit me, sometimes to the extent that it basically hangs... in such cases, if the intensive bit is essential to the debugging, I'll swear at it; otherwise I'll just snip out that part. And swear, also. :)

Re:huh

Ovid on 2006-02-25T01:40:31

I've wondered if it's just taking longer, but no, it's really hanging. And this is a huge system and figuring out what part it's hanging on is a chore in and of itself.

Re:huh

bpphillips on 2006-02-25T05:04:08

Does anything happen when you hit CTRL-C? Typically if something is taking forever when I'm debugging, I can hit CTRL-C and the debugger will stop at whatever point it's at. If it's indeed hanging and not just running really slow this might not do any good I guess...

Re:huh

Ovid on 2006-02-25T07:55:14

No, it doesn't stop when I hit CTRL-C. I have to do a ps to get the process id and then kill it.

It has never been said...

sigzero on 2006-02-25T03:59:06

"Choose Perl, it has a great debugger!"

I sympathise

Dom2 on 2006-02-25T10:03:05

We've got some fiendish contraption that we use to bootstrap our projects (get @INC setup, etc) at work. Except that it causes the debugger to blow up in URI::_generic. It's exceedingly weird. Some time I will try and figure out what's going on, but it's very frustrating.

What's worse is that I'm the only person who has ever noticed...

-Dom

Re:I sympathise

kane on 2006-02-25T11:40:41

Interesting coincidence -- had the same thing happen when trying to run a self-written Catalyst plugin through the debugger. It also gave errors in URI::_generic..

Want

djberg96 on 2006-02-27T02:58:19

Freezes? Hell, Want.pm *crashes* the debugger.