Merge "Remove spurious log" into nyc-dev
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;