From: Mike Taylor Date: Sat, 24 Feb 2007 01:26:32 +0000 (+0000) Subject: Get backtrace if program dies. X-Git-Tag: CPAN-v1.02~54^2~543 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=97b338e0de2f8d60bb9de1d7fdf5574d092fa736;hp=ee71b2c458c48d8c35b5f651833cbb6ef69b672f;ds=inline Get backtrace if program dies. --- diff --git a/bin/irspy.pl b/bin/irspy.pl index d7fda06..fef62d1 100755 --- a/bin/irspy.pl +++ b/bin/irspy.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.22 2007-02-23 16:44:50 mike Exp $ +# $Id: irspy.pl,v 1.23 2007-02-24 01:26:32 mike Exp $ # # Run like this: # YAZ_LOG=irspy,irspy_test IRSPY_SAVE_XML=1 perl -I../lib irspy.pl -t Quick localhost:8018/IR-Explain---1 z3950.loc.gov:7090/Voyager bagel.indexdata.dk/gils bagel.indexdata.dk:210/marc @@ -16,6 +16,12 @@ use strict; use warnings; use Getopt::Std; use ZOOM::IRSpy::Web; +use Carp; + +local $SIG{__DIE__} = sub { + my($msg) = @_; + confess($msg); +}; my %opts; if (!getopts('wt:af:', \%opts) || @ARGV < 1) {