package Logger; sub new { my $self = ... ... $SIG{__DIE__} = sub { my $msg = shift; $self->add($msg); die $msg; }; return $self; }