summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2024-02-26 15:55:02 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2024-02-26 15:55:02 +0900
commit821ec534fa7632067f2f6b77fac0688668d658df (patch)
tree85c5e7ba2eeb2d154c52ec425e6193a8b8433137
parent760f05bac6a295c3cee522bf7dcffa28226995e9 (diff)
downloadlaunchpad-821ec534fa7632067f2f6b77fac0688668d658df.tar.gz
launchpad-821ec534fa7632067f2f6b77fac0688668d658df.tar.bz2
launchpad-821ec534fa7632067f2f6b77fac0688668d658df.zip
Remove log print related to fds
This patch removes the log print from the CloseAllFds(). Change-Id: I51a90345e39242ca4a9dd8ba913d67c28543db46 Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--src/lib/launchpad-glib/util.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/launchpad-glib/util.cc b/src/lib/launchpad-glib/util.cc
index 01cb31d..65a4e4d 100644
--- a/src/lib/launchpad-glib/util.cc
+++ b/src/lib/launchpad-glib/util.cc
@@ -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);
}