From: Unsung Lee Date: Thu, 20 Jun 2024 11:19:41 +0000 (+0900) Subject: fd-handler: Remove meaningless but frequent called log X-Git-Tag: accepted/tizen/unified/20240709.165118~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c073607953d79ec76d5be2c8e970760a66204c3b;p=platform%2Fcore%2Fsystem%2Fresourced.git fd-handler: Remove meaningless but frequent called log Remove meaningless but frequent called (useless) log when fd (such as socket) is closed successfully. Change-Id: Ib2bda4d07edc36f559c4e16be3aa20bf59d3dae8 Signed-off-by: Unsung Lee --- diff --git a/src/common/fd-handler.c b/src/common/fd-handler.c index 288988a..599b46b 100644 --- a/src/common/fd-handler.c +++ b/src/common/fd-handler.c @@ -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);