improved error message.

This commit is contained in:
Martin Preuss
2023-04-26 17:34:15 +02:00
parent d7ac2c74fb
commit 33e08ad343

View File

@@ -163,7 +163,8 @@ void _loopOnceOverEndpoints(GWEN_MSG_ENDPOINT_MGR *emgr)
if (GWEN_ConnectableMsgEndpoint_GetState(ep)>=GWEN_ENDPOINT_MQTTC_STATE_ESTABLISHED)
_handleEndpoint(emgr, ep);
else {
DBG_INFO(AQH_LOGDOMAIN, "Not handling MQTT endpoint right now (not fully connected)");
DBG_INFO(AQH_LOGDOMAIN, "Not handling MQTT endpoint right now (not fully connected: %d)",
GWEN_ConnectableMsgEndpoint_GetState(ep));
}
}
else