From c32be5cd3882c3bf1d1518e895bac4b89485a8c9 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Sat, 25 Oct 2025 16:36:52 +0200 Subject: [PATCH] increased verbosity. --- apps/aqhome-nodes/db.c | 2 +- aqhome/events2/fdobject.c | 2 +- aqhome/ipc2/endpoint.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/aqhome-nodes/db.c b/apps/aqhome-nodes/db.c index 43a55ac..01152b7 100644 --- a/apps/aqhome-nodes/db.c +++ b/apps/aqhome-nodes/db.c @@ -246,7 +246,7 @@ void _announceNodeValues(AQH_OBJECT *o, AQH_NODE_SERVER *xo, const AQH_NODE_INFO v=AQHNODE_Value_List_First(valueList); while(v) { - DBG_ERROR(NULL, "Announcing value \"%08x/%s\" (%d=%s)", + DBG_INFO(NULL, "Announcing value \"%08x/%s\" (%d=%s)", AQH_NodeInfo_GetUid(ni), AQHNODE_Value_GetName(v), AQHNODE_Value_GetModality(v), AQH_ValueModality_toString(AQHNODE_Value_GetModality(v))); diff --git a/aqhome/events2/fdobject.c b/aqhome/events2/fdobject.c index d66ac04..b181988 100644 --- a/aqhome/events2/fdobject.c +++ b/aqhome/events2/fdobject.c @@ -180,7 +180,7 @@ int AQH_FdObject_Read(AQH_OBJECT *o, uint8_t *ptrBuffer, uint32_t lenBuffer) return GWEN_ERROR_TRY_AGAIN; } else { - DBG_ERROR(AQH_LOGDOMAIN, "Error on read: %s (%d)", strerror(errno), errno); + DBG_ERROR(AQH_LOGDOMAIN, "Error on read(%d): %s (%d)", xo->fd, strerror(errno), errno); close(xo->fd); xo->fd=-1; return GWEN_ERROR_IO; diff --git a/aqhome/ipc2/endpoint.c b/aqhome/ipc2/endpoint.c index d4c5100..4e25306 100644 --- a/aqhome/ipc2/endpoint.c +++ b/aqhome/ipc2/endpoint.c @@ -561,7 +561,7 @@ int _handleClosed(AQH_OBJECT *o) { AQH_ENDPOINT *xo; - DBG_INFO(AQH_LOGDOMAIN, "Connection closed."); + DBG_ERROR(AQH_LOGDOMAIN, "Connection closed."); xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_ENDPOINT, o); if (xo) { AQH_Object_Disable(xo->msgWriter);