From f3c68a8bba4299021440772ac57b260774bd2446 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Sat, 20 Apr 2024 02:03:49 +0200 Subject: [PATCH] aqhome-react: fixed typo. --- apps/aqhome-react/units/u_stabilize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/aqhome-react/units/u_stabilize.c b/apps/aqhome-react/units/u_stabilize.c index 61bdbb3..d0e6452 100644 --- a/apps/aqhome-react/units/u_stabilize.c +++ b/apps/aqhome-react/units/u_stabilize.c @@ -156,7 +156,7 @@ int _checkState(AQHREACT_UNIT *unit) newState=(doubleData>0.0)?1:0; DBG_DEBUG(NULL, "Got dataObject (%f), new state is %d (previously: %d)", doubleData, newState, xunit->lastProcessedState); if (newState!=xunit->lastProcessedState) { - DBG_INFO(NULL, "Stage changed (%d->%d)", xunit->lastProcessedState, newState); + DBG_INFO(NULL, "State changed (%d->%d)[%f]", xunit->lastProcessedState, newState, doubleData); _startTimer(unit, xunit, newState); result=1; }