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 d7722309fd
commit 52ce3b98af

View File

@@ -276,7 +276,7 @@ dewpoint_Notify($$)
# We found temperature and humidity. so we can calculate dewpoint first
# Pr<50>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;
}