fd-handler: Remove meaningless but frequent called log 19/313719/1
authorUnsung Lee <unsung.lee@samsung.com>
Thu, 20 Jun 2024 11:19:41 +0000 (20:19 +0900)
committerUnsung Lee <unsung.lee@samsung.com>
Mon, 1 Jul 2024 07:11:45 +0000 (16:11 +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 288988a..599b46b 100644 (file)
@@ -88,9 +88,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);