diff options
author | Andrew Chant <achant@google.com> | 2020-06-30 13:56:00 -0700 |
---|---|---|
committer | Patrick Tjin <pattjin@google.com> | 2020-11-04 19:49:57 -0800 |
commit | a0c6e6a56a269112c7c6208701504152d66e9bd3 (patch) | |
tree | 85e57c78f223c17431ab3571eb57826646ff59bc /usb | |
parent | feb93f86f81258baaa63fed92696dcab18b44be7 (diff) |
libpixelusb: remove logspam
Current adb logspams with the following logs repeating every 1ms:
06-30 20:46:06.504 4387 4403 I libpixelusb: event=1 on fd=8
06-30 20:46:06.504 4389 4412 I adbd : USB event: FUNCTIONFS_SUSPEND
06-30 20:46:06.504 4387 4403 I libpixelusb: event=1 on fd=8
06-30 20:46:06.504 4389 4412 I adbd : USB event: FUNCTIONFS_SUSPEND
06-30 20:46:06.504 4387 4403 I libpixelusb: event=1 on fd=8
06-30 20:46:06.504 4389 4412 I adbd : USB event: FUNCTIONFS_SUSPEND
06-30 20:46:06.505 4387 4403 I libpixelusb: event=1 on fd=8
06-30 20:46:06.505 4389 4412 I adbd : USB event: FUNCTIONFS_SUSPEND
06-30 20:46:06.505 4389 4412 I adbd : USB event: FUNCTIONFS_SUSPEND
06-30 20:46:06.505 4387 4403 I libpixelusb: event=1 on fd=
Bug: 59724343
Change-Id: I22723ba94341a8d11f27d8f2ec2dd77e78f89290
Diffstat (limited to 'usb')
-rw-r--r-- | usb/MonitorFfs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usb/MonitorFfs.cpp b/usb/MonitorFfs.cpp index b84efbc..717e6a7 100644 --- a/usb/MonitorFfs.cpp +++ b/usb/MonitorFfs.cpp @@ -150,7 +150,7 @@ void *MonitorFfs::startMonitorFd(void *param) { } for (int i = 0; i < nrEvents; i++) { - ALOGI("event=%u on fd=%d\n", events[i].events, events[i].data.fd); + ALOGV("event=%u on fd=%d\n", events[i].events, events[i].data.fd); if (events[i].data.fd == monitorFfs->mInotifyFd) { // Process all of the events in buffer returned by read(). |