2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

72_FRITZBOX.pm: Fehlerbereinigung u.a. "," Reading

git-svn-id: https://svn.fhem.de/fhem/trunk@27044 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jowiemann 2023-01-13 13:13:37 +00:00
parent 97a7ef426c
commit e952ac2a37

View File

@ -2677,10 +2677,6 @@ sub FRITZBOX_Readout_Process($$)
my $name = $hash->{NAME};
my (%values) = split("\\|", $string);
if ($string =~ /\,/ ) {
FRITZBOX_Log $hash, 3, "DEBUG: Processing " . keys(%values) . " readouts.\n" . $string;
}
my @reading_list = split(/\,/, AttrVal($name, "disableBoxReadings", "none"));
readingsBeginUpdate($hash);
@ -2945,10 +2941,6 @@ sub FRITZBOX_Readout_Add_Reading ($$$$@)
push @{$roReadings}, $rName . "|" . $rValue ;
if ($rName =~ /\,/) {
FRITZBOX_Log $hash, 1, "ERROR: (,) Reading: $rValue from caller -> $sub.$xline";
}
FRITZBOX_Log $hash, 5, "DEBUG: $rName: $rValue";
}