2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 10:46:53 +00:00

fhem.pl: remove __DIE__ handler (Forum #35796)

git-svn-id: https://svn.fhem.de/fhem/trunk@8437 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-04-14 18:35:27 +00:00
parent b727b8d3f3
commit 7b991e496b

View File

@ -2661,13 +2661,7 @@ SignalHandling()
$msg !~ m/ redefined at /);
$inWarnSub = 0;
};
$SIG{__DIE__} = sub {
my ($msg) = @_;
Log 1, "PERL ERROR: $msg";
stacktrace();
exit(1);
};
# $SIG{__DIE__} = sub {...} #Removed. Forum #35796
}