diff options
author | Chris Wailes <chriswailes@google.com> | 2019-04-08 15:52:40 -0700 |
---|---|---|
committer | Christian Wailes <chriswailes@google.com> | 2019-04-09 17:25:43 +0000 |
commit | 87c89eb057e76cca437080cfe8ed45cf0054a58b (patch) | |
tree | efa9dc4c916e6b81ec03a5ba5c8575b45fd4fea6 /core/jni/fd_utils.cpp | |
parent | 45e2c22d7e50dfc6241ec885dcc1cae1da8e9dc2 (diff) |
Removed log spam from the Zygote.
This patch removes several debugging log messages. These messages were
useful when the `FDs to ignore` list was usually empty, but with the
addition of USAPs this has become spammy.
(cherry picked from commit da0a9cd05c4e2860c91e2ac31285526c041a5b85)
Test: Build
Bug: 130172109
Change-Id: Id166990a63f20efb3bf6ffd5b697efd436d50921
Merged-In: Id166990a63f20efb3bf6ffd5b697efd436d50921
Diffstat (limited to 'core/jni/fd_utils.cpp')
-rw-r--r-- | core/jni/fd_utils.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/jni/fd_utils.cpp b/core/jni/fd_utils.cpp index 099635246f05..77ebd0290d33 100644 --- a/core/jni/fd_utils.cpp +++ b/core/jni/fd_utils.cpp @@ -462,7 +462,6 @@ FileDescriptorTable* FileDescriptorTable::Create(const std::vector<int>& fds_to_ } if (std::find(fds_to_ignore.begin(), fds_to_ignore.end(), fd) != fds_to_ignore.end()) { - LOG(INFO) << "Ignoring open file descriptor " << fd; continue; } @@ -496,7 +495,6 @@ void FileDescriptorTable::Restat(const std::vector<int>& fds_to_ignore, fail_fn_ } if (std::find(fds_to_ignore.begin(), fds_to_ignore.end(), fd) != fds_to_ignore.end()) { - LOG(INFO) << "Ignoring open file descriptor " << fd; continue; } |