People keep giving me examples with carp instead of warn. Why? What makes carp better than warn?
|
carp gives you more info as to where the the message comes from (context)
produces
kinda silly for this small program but comes in handy when you want to know who called the method that's carp'ing. |
||||
|
|
|
I use Damian recommends I've mostly not cared about that lately because I've been using Log::Log4perl to handle all of that. |
||||
|
|
|
carp works better for debugging within modules. If you are only writing a simple script, there is no benefit. From the Carp documenation:
|
||||
|
|
|
Most authors use |
|||
|
|