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

98_dewpoint.pm: add device name to error message

git-svn-id: https://svn.fhem.de/fhem/trunk@18846 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hotbso 2019-03-10 11:45:58 +00:00
parent 21394f215f
commit ac9d29375c

View File

@ -276,7 +276,7 @@ dewpoint_Notify($$)
# We found temperature and humidity. so we can calculate dewpoint first
# Prüfen, ob humidity im erlaubten Bereich ist
if (($humidity <= 0) || ($humidity >= 110)){
Log3($hashName, 1, "dewpoint_notify: humidity invalid: $humidity");
Log3($hashName, 1, "dewpoint_notify: humidity device $devName ($hum_name) invalid: $humidity");
return undef;
}