decreased verbosity.
This commit is contained in:
@@ -180,7 +180,7 @@ int AQH_FdObject_Read(AQH_OBJECT *o, uint8_t *ptrBuffer, uint32_t lenBuffer)
|
|||||||
return GWEN_ERROR_TRY_AGAIN;
|
return GWEN_ERROR_TRY_AGAIN;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
DBG_ERROR(AQH_LOGDOMAIN, "Error on read(%d): %s (%d)", xo->fd, strerror(errno), errno);
|
DBG_INFO(AQH_LOGDOMAIN, "Error on read(%d): %s (%d)", xo->fd, strerror(errno), errno);
|
||||||
close(xo->fd);
|
close(xo->fd);
|
||||||
xo->fd=-1;
|
xo->fd=-1;
|
||||||
return GWEN_ERROR_IO;
|
return GWEN_ERROR_IO;
|
||||||
|
|||||||
@@ -531,7 +531,7 @@ int _handleMsgSent(AQH_OBJECT *o)
|
|||||||
if (xo) {
|
if (xo) {
|
||||||
AQH_MESSAGE *msg;
|
AQH_MESSAGE *msg;
|
||||||
|
|
||||||
DBG_INFO(AQH_LOGDOMAIN, "Messages in outlist: %d", AQH_Message_List_GetCount(xo->msgOutList));
|
DBG_DEBUG(AQH_LOGDOMAIN, "Messages in outlist: %d", AQH_Message_List_GetCount(xo->msgOutList));
|
||||||
msg=AQH_Message_List_First(xo->msgOutList);
|
msg=AQH_Message_List_First(xo->msgOutList);
|
||||||
if (msg) {
|
if (msg) {
|
||||||
/* remove sent message from list */
|
/* remove sent message from list */
|
||||||
@@ -561,7 +561,7 @@ int _handleClosed(AQH_OBJECT *o)
|
|||||||
{
|
{
|
||||||
AQH_ENDPOINT *xo;
|
AQH_ENDPOINT *xo;
|
||||||
|
|
||||||
DBG_ERROR(AQH_LOGDOMAIN, "Connection closed.");
|
DBG_INFO(AQH_LOGDOMAIN, "Connection closed.");
|
||||||
xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_ENDPOINT, o);
|
xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_ENDPOINT, o);
|
||||||
if (xo) {
|
if (xo) {
|
||||||
AQH_Object_Disable(xo->msgWriter);
|
AQH_Object_Disable(xo->msgWriter);
|
||||||
|
|||||||
Reference in New Issue
Block a user