2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

fhem.pl: change logInform "API", remove space (Forum #131790)

git-svn-id: https://svn.fhem.de/fhem/trunk@27110 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2023-01-23 15:15:30 +00:00
parent af0054c266
commit 0ccc5bc292

View File

@ -1022,7 +1022,7 @@ Log3($$$)
no strict "refs";
foreach my $li (keys %logInform) {
if($defs{$li}) { # Function wont be called for WARNING, don't know why
&{$logInform{$li}}($li, "$tim $loglevel : $text");
&{$logInform{$li}}($li, "$tim $loglevel: $text");
} else {
delete $logInform{$li};
}