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