Lines Matching defs:longmess
18 longmess - return the message that cluck and confess produce
29 print FH Carp::longmess("This will have stack backtrace added");
36 cluck, confess, and longmess that context is a summary of every
130 $Verbose = 0; # If true then make shortmess call longmess instead
135 @EXPORT_OK = qw(cluck verbose longmess shortmess);
151 # longmess() crawls all the way up the stack reporting on all the function
153 # arguments passed into longmess() via confess(), cluck() or shortmess().
157 sub longmess {
173 # and cluck() generate a full stack trace so they call longmess() to
174 # generate that. In verbose mode shortmess() calls longmess() so
177 sub shortmess { # Short-circuit &longmess if called via multiple packages
186 # the following four functions call longmess() or shortmess() depending on
192 sub confess { die longmess @_ }
194 sub cluck { warn longmess @_ }