local $SIG{__DIE__} = ''; # no effect local $SIG{__DIE__} = 'DEFAULT'; # no effect # this gives a warning in the error log, no error local $SIG{__DIE__} = sub { warn @_ }; # this has no effect, nothing at all in the logs: local $SIG{__DIE__} = sub { die @_ };