Remove log print related to fds 85/306685/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 26 Feb 2024 06:55:02 +0000 (15:55 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 26 Feb 2024 06:55:02 +0000 (15:55 +0900)
This patch removes the log print from the CloseAllFds().

Change-Id: I51a90345e39242ca4a9dd8ba913d67c28543db46
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/lib/launchpad-glib/util.cc

index 01cb31d..65a4e4d 100644 (file)
@@ -563,7 +563,6 @@ void Util::CloseAllFds(const std::vector<int>& except_fds) {
     _E("Execption occurs. error(%s)", e.what());
   }
 
-  _W("size: %zd", fds.size());
   for (auto fd : fds)
     close(fd);
 }