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