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;
DBG_INFO(NULL, "Socket ready");
DBG_DEBUG(NULL, "Socket ready");
xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_TCPD_OBJECT, o);
if (xo) {
int clientSk;
clientSk=_acceptConnection(xo->fdSocket);
if (clientSk<0) {
DBG_ERROR(AQH_LOGDOMAIN, "here (%d)", clientSk);
DBG_INFO(AQH_LOGDOMAIN, "here (%d)", clientSk);
}
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)) {
DBG_ERROR(AQH_LOGDOMAIN, "New connection not handled");
close(clientSk);