commit | 7ff357ab080d0f3330a5642124a352f745d816bb | [log] [tgz] |
---|---|---|
author | Chris Tate <ctate@android.com> | Fri Mar 25 21:19:58 2016 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Fri Mar 25 21:19:58 2016 +0000 |
tree | 289d984e101afefcb31fc575dd3158a638871032 | |
parent | 834fde83f9a924f23e920306d9f7590fb6fd0e0b [diff] | |
parent | bf14e94722a57a545b04396e06e9c5d65e241068 [diff] |
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;