Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Style guide for error messages?

by Anonymous Monk
on Sep 22, 2005 at 09:36 UTC ( [id://494046]=note: print w/replies, xml ) Need Help??


in reply to Re: Style guide for error messages?
in thread Style guide for error messages?

I seldomly include the line number in my error messages. The vast majority of my usage of 'die' is after a system command:
open(...) or die(...); chmod(...) or die(...);
If I can't open a file for some reason (it doesn't exist, I don't have permission, whatever), all I care about is which file did the program try to open, and why can't it open the file. It doesn't matter whether it tried to open the file on line 23, or on line 389 - dies not being caught by eval will report to the user, and should contain only information that's relevant to the user. Line numbers aren't.

The second largest group of die usage are meant as exceptions. Again, line numbers are useless - the die is supposed to be catched (or escalated to a real die), and I need an informative message or datastructure. That's what I'll inspect in $@ - not a line number.

I might want to know line-numbers is during debugging. But croak() already gives a stack-trace, and that is often already enough.

The compiler emitting line-number on syntax error, now that's a useful use of line numbers.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-19 07:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found