diff options
| author | 2021-08-12 16:26:46 -0700 | |
|---|---|---|
| committer | 2021-08-12 23:28:50 +0000 | |
| commit | 121a53e0707c4dc85397fc39c6d0ec1f4fb3c52a (patch) | |
| tree | 5d3ca3e057e368c9ba0615968e187d8327ce8a1e /libs/binder/ProcessState.cpp | |
| parent | f1aa6cddcebc60d0ca8c4df1849b3b530d046bff (diff) | |
libbinder: even further downgrade oneway spam log
Can't downgrade this log enough.
Fixes: 195968648
Test: N/A
Change-Id: I462a7693ae6f0bda99e107ee42d51cb6341536f8
Diffstat (limited to 'libs/binder/ProcessState.cpp')
| -rw-r--r-- | libs/binder/ProcessState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp index 8ef4341e19..caa00a5e1c 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) { - ALOGD("Binder ioctl to enable oneway spam detection failed: %s", strerror(errno)); + ALOGV("Binder ioctl to enable oneway spam detection failed: %s", strerror(errno)); } } else { ALOGW("Opening '%s' failed: %s\n", driver, strerror(errno)); |