From 8e49c2b04f8f6d39234d95f6f9dab74a51ec66fd Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Tue, 25 May 2021 18:07:04 +0000 Subject: libbinder: further downgrade oneway spam log We do get this info in dmesg as well. Reduce spam. Bug: 188928044 Test: N/A Change-Id: I521b43a7e66df849dfb91766c10cda09b19b12d1 --- libs/binder/ProcessState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/binder/ProcessState.cpp') diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp index 3095607594..8ef4341e19 100644 --- a/libs/binder/ProcessState.cpp +++ b/libs/binder/ProcessState.cpp @@ -409,7 +409,7 @@ static int open_driver(const char *driver) uint32_t enable = DEFAULT_ENABLE_ONEWAY_SPAM_DETECTION; result = ioctl(fd, BINDER_ENABLE_ONEWAY_SPAM_DETECTION, &enable); if (result == -1) { - ALOGI("Binder ioctl to enable oneway spam detection failed: %s", strerror(errno)); + ALOGD("Binder ioctl to enable oneway spam detection failed: %s", strerror(errno)); } } else { ALOGW("Opening '%s' failed: %s\n", driver, strerror(errno)); -- cgit v1.2.3-59-g8ed1b