decreased verbosity.

This commit is contained in:
Martin Preuss
2025-03-11 23:00:14 +01:00
parent 58bc39c2fb
commit edb6c90f46

View File

@@ -87,13 +87,13 @@ AQH_OBJECT *Utils2_SetupNodesClientEndpoint(AQH_EVENT_LOOP *eventLoop, GWEN_DB_N
AQH_OBJECT *ep; AQH_OBJECT *ep;
int fd; 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); fd=AQH_TcpObject_CreateConnectedSocket(address, port);
if (fd<0) { if (fd<0) {
DBG_ERROR(NULL, "Error connecting to nodes server %s:%d", address, port); DBG_ERROR(NULL, "Error connecting to nodes server %s:%d", address, port);
return NULL; 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); ep=AQH_IpcClientObject_new(eventLoop, fd);
assert(ep); assert(ep);