Make BAIL_OUT display what was thrown

This commit is contained in:
Andrew Johnson
2021-05-03 14:13:19 +02:00
committed by zimoch
co-authored by zimoch
parent c4d639e72a
commit d606155f17
+1 -1
View File
@@ -38,7 +38,7 @@ $ioc->debug($debug);
$SIG{__DIE__} = $SIG{INT} = $SIG{QUIT} = sub {
$ioc->exit;
BAIL_OUT('Caught signal');
BAIL_OUT("Caught signal: $_[0]");
};