Decreased verbosity.

This commit is contained in:
Martin Preuss
2025-09-07 01:43:13 +02:00
parent 52a5078706
commit 51d55128a9

View File

@@ -176,17 +176,17 @@ int _handleSocketReady(AQH_OBJECT *o)
{ {
AQH_TCPD_OBJECT *xo; AQH_TCPD_OBJECT *xo;
DBG_INFO(NULL, "Socket ready"); DBG_DEBUG(NULL, "Socket ready");
xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_TCPD_OBJECT, o); xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_TCPD_OBJECT, o);
if (xo) { if (xo) {
int clientSk; int clientSk;
clientSk=_acceptConnection(xo->fdSocket); clientSk=_acceptConnection(xo->fdSocket);
if (clientSk<0) { if (clientSk<0) {
DBG_ERROR(AQH_LOGDOMAIN, "here (%d)", clientSk); DBG_INFO(AQH_LOGDOMAIN, "here (%d)", clientSk);
} }
else { else {
DBG_INFO(AQH_LOGDOMAIN, "New connection"); DBG_NOTICE(AQH_LOGDOMAIN, "New connection");
if (0==AQH_Object_EmitSignal(o, AQH_TCPD_OBJECT_SIGNAL_NEWCONN, clientSk, NULL)) { if (0==AQH_Object_EmitSignal(o, AQH_TCPD_OBJECT_SIGNAL_NEWCONN, clientSk, NULL)) {
DBG_ERROR(AQH_LOGDOMAIN, "New connection not handled"); DBG_ERROR(AQH_LOGDOMAIN, "New connection not handled");
close(clientSk); close(clientSk);