From e8a8a060d09de1be34aa943bd298e5f4f8e2a12f Mon Sep 17 00:00:00 2001 From: "l.heizinger" Date: Sat, 5 Mar 2022 13:59:23 +0100 Subject: [PATCH] Fix debug message for SG Ready mode change --- stiebeleltron/integrationpluginstiebeleltron.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stiebeleltron/integrationpluginstiebeleltron.cpp b/stiebeleltron/integrationpluginstiebeleltron.cpp index 36f0c2e..6f8a7dc 100644 --- a/stiebeleltron/integrationpluginstiebeleltron.cpp +++ b/stiebeleltron/integrationpluginstiebeleltron.cpp @@ -231,7 +231,7 @@ void IntegrationPluginStiebelEltron::setupThing(ThingSetupInfo *info) { connect(connection, &StiebelEltronModbusConnection::sgReadyStateChanged, thing, [thing](StiebelEltronModbusConnection::SmartGridState smartGridState) { - qCDebug(dcStiebelEltron()) << thing << "SG Ready activation changed" << smartGridState; + qCDebug(dcStiebelEltron()) << thing << "SG Ready mode changed" << smartGridState; switch (smartGridState) { case StiebelEltronModbusConnection::SmartGridStateModeOne: thing->setStateValue(stiebelEltronSgReadyModeStateTypeId, "Off");