diff options
| author | 2021-08-13 18:21:28 +0000 | |
|---|---|---|
| committer | 2021-08-13 18:21:28 +0000 | |
| commit | 603833006c6468e4a8e603904a4cd62f0eb740ae (patch) | |
| tree | 20c7626c0f078d29fe595f8e745e714f180dcc9a | |
| parent | 231bda61aee209a1882d52f25f02642259f9f0da (diff) | |
| parent | 121a53e0707c4dc85397fc39c6d0ec1f4fb3c52a (diff) | |
Merge "libbinder: even further downgrade oneway spam log"
| -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)); |