From edb6c90f46731dc6786ba597037ecaa82024f7a6 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Tue, 11 Mar 2025 23:00:14 +0100 Subject: [PATCH] decreased verbosity. --- apps/aqhome-tool/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/aqhome-tool/utils.c b/apps/aqhome-tool/utils.c index 967a68a..9c9b718 100644 --- a/apps/aqhome-tool/utils.c +++ b/apps/aqhome-tool/utils.c @@ -87,13 +87,13 @@ AQH_OBJECT *Utils2_SetupNodesClientEndpoint(AQH_EVENT_LOOP *eventLoop, GWEN_DB_N AQH_OBJECT *ep; int fd; - DBG_ERROR(NULL, "Connecting to nodes server %s:%d", address, port); + DBG_INFO(NULL, "Connecting to nodes server %s:%d", address, port); fd=AQH_TcpObject_CreateConnectedSocket(address, port); if (fd<0) { DBG_ERROR(NULL, "Error connecting to nodes server %s:%d", address, port); return NULL; } - DBG_ERROR(NULL, "Connected to nodes server %s:%d", address, port); + DBG_INFO(NULL, "Connected to nodes server %s:%d", address, port); ep=AQH_IpcClientObject_new(eventLoop, fd); assert(ep);