98_dewpoint.pm: add device name to error message

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

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;
}