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

98_DOIFtools.pm: remove Log in DOIFtoolsNextTimer

git-svn-id: https://svn.fhem.de/fhem/trunk@18333 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
Ellert 2019-01-19 09:13:38 +00:00
parent 5efd899c32
commit 5818eb7198
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it. # Do not insert empty lines here, update check depends on it.
- bugfix: 98_DOIFtools: remove Log in DOIFtoolsNextTimer
- bugfix: 93_DbRep: V8.9.10, fix warnings Malformed UTF-8 character during - bugfix: 93_DbRep: V8.9.10, fix warnings Malformed UTF-8 character during
importFromFile, Forum:#96056 importFromFile, Forum:#96056
- change: 59_Weather: add Internal MODEL for statistic - change: 59_Weather: add Internal MODEL for statistic

View File

@ -791,8 +791,6 @@ sub DOIFtoolsNextTimer {
} }
my $tdays = ""; my $tdays = "";
$tdays = $tn ? DOIF_weekdays($defs{$tn},$weekd) : $weekd; $tdays = $tn ? DOIF_weekdays($defs{$tn},$weekd) : $weekd;
Log 1, "$tn $tdays";
Log 1, "$tn ".join("",@DOIFtools_we);
$tdays =~/([0-9])/; $tdays =~/([0-9])/;
return $tstr if (length($1) == 0); return $tstr if (length($1) == 0);
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($timer); my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($timer);