Remove spurious log
Bug 26696080
Change-Id: I60ce2c1fac653d33a033c1e22f0df87466287fba
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index fe0ad9f..a0161b3 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -2547,7 +2547,7 @@
struct rlimit result;
if (!getrlimit(RLIMIT_NOFILE, &result)) {
gMaxFds = (size_t)result.rlim_cur;
- ALOGI("parcel fd limit set to %zu", gMaxFds);
+ //ALOGI("parcel fd limit set to %zu", gMaxFds);
} else {
ALOGW("Unable to getrlimit: %s", strerror(errno));
gMaxFds = 1024;