2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-25 03:39:21 +00:00

at error reporting fix

git-svn-id: https://svn.fhem.de/fhem/trunk@897 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2011-04-25 15:52:32 +00:00
parent 8e565ba360
commit 91f58a9379
2 changed files with 2 additions and 3 deletions

View File

@ -104,7 +104,7 @@ at_Exec($)
my (undef, $command) = split("[ \t]+", $defs{$name}{DEF}, 2);
$command = SemicolonEscape($command);
my $ret = AnalyzeCommandChain(undef, $command) if(!$skip && !$disable);
Log 3, $ret if($ret);
Log GetLogLevel($name,3), $ret if($ret);
return if(!$defs{$name}); # Deleted in the Command

View File

@ -167,7 +167,7 @@ my $nextat; # Time when next timer will be triggered.
my $intAtCnt=0;
my %duplicate; # Pool of received msg for multi-fhz/cul setups
my $duplidx=0; # helper for the above pool
my $cvsid = '$Id: fhem.pl,v 1.137 2011-04-25 08:11:52 rudolfkoenig Exp $';
my $cvsid = '$Id: fhem.pl,v 1.138 2011-04-25 15:52:32 rudolfkoenig Exp $';
my $namedef =
"where <name> is either:\n" .
"- a single device name\n" .
@ -1518,7 +1518,6 @@ GlobalAttr($$)
my ($type, $me, $name, $val) = @_;
return if($type ne "set");
################
if($name eq "logfile") {
my @t = localtime;