check-health: use $LogPrintExit

This commit is contained in:
Christian Hesse 2020-04-03 17:29:08 +02:00
parent b2d1b64bd2
commit 1f1fef9fb5

View file

@ -10,6 +10,7 @@
:global CheckHealthVoltagePercent; :global CheckHealthVoltagePercent;
:global Identity; :global Identity;
:global LogPrintExit;
:global SendNotification; :global SendNotification;
:local FormatVoltage do={ :local FormatVoltage do={
@ -52,7 +53,7 @@
:if ([ :typeof ($CheckHealthLast->$Temperature) ] = "num" && \ :if ([ :typeof ($CheckHealthLast->$Temperature) ] = "num" && \
[ :typeof ($CheckHealthCurrent->$Temperature) ] = "num") do={ [ :typeof ($CheckHealthCurrent->$Temperature) ] = "num") do={
:if ([ :typeof ($CheckHealthTemperature->$Temperature) ] != "num" ) do={ :if ([ :typeof ($CheckHealthTemperature->$Temperature) ] != "num" ) do={
:log warning ("No threshold given for " . $Temperature . ", assuming 50C."); $LogPrintExit warning ("No threshold given for " . $Temperature . ", assuming 50C.") false;
:set ($CheckHealthTemperature->$Temperature) 50; :set ($CheckHealthTemperature->$Temperature) 50;
} }
:if ($CheckHealthLast->$Temperature <= $CheckHealthTemperature->$Temperature && \ :if ($CheckHealthLast->$Temperature <= $CheckHealthTemperature->$Temperature && \