fd-handler: Remove meaningless but frequent called log 54/313254/1
authorUnsung Lee <unsung.lee@samsung.com>
Thu, 20 Jun 2024 11:19:41 +0000 (20:19 +0900)
committerUnsung Lee <unsung.lee@samsung.com>
Thu, 20 Jun 2024 11:19:58 +0000 (20:19 +0900)
Remove meaningless but frequent called (useless) log
when fd (such as socket) is closed successfully.

Change-Id: Ib2bda4d07edc36f559c4e16be3aa20bf59d3dae8
Signed-off-by: Unsung Lee <unsung.lee@samsung.com>
src/common/fd-handler.c

index 30ae2a7adf84d0d2dd3958b37e0ba5320da15ea0..8e5b9139fe9fb874c0b7f543bd01af2c379ec9ae 100644 (file)
@@ -82,9 +82,6 @@ static gboolean channel_changed(GIOChannel *source,
        if (h->fd != g_io_channel_unix_get_fd(source))
                return TRUE;
 
-       if (condition & G_IO_HUP)
-               _I("GIOChannel receives G_IO_HUP(connection close) fd = %d condition = %d", h->fd, condition);
-
        if (condition & G_IO_ERR)
                _E("GIOChannel receives G_IO_ERR fd = %d condition = %d", h->fd, condition);