From da0a9cd05c4e2860c91e2ac31285526c041a5b85 Mon Sep 17 00:00:00 2001 From: Chris Wailes Date: Mon, 8 Apr 2019 15:52:40 -0700 Subject: [PATCH] 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. Test: Build Bug: 130172109 Change-Id: Id166990a63f20efb3bf6ffd5b697efd436d50921 --- core/jni/fd_utils.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/jni/fd_utils.cpp b/core/jni/fd_utils.cpp index 8e6db0b74dec7..2071b989aef7a 100644 --- a/core/jni/fd_utils.cpp +++ b/core/jni/fd_utils.cpp @@ -453,7 +453,6 @@ FileDescriptorTable* FileDescriptorTable::Create(const std::vector& 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; } @@ -487,7 +486,6 @@ void FileDescriptorTable::Restat(const std::vector& 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; }