diff options
| author | hathach <[email protected]> | 2021-06-11 18:53:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-06-11 18:54:09 +0700 |
| commit | dfe5a727c6b236c1b05b5447cdf0535545a6d32e (patch) | |
| tree | 8eaf03501dac9a6fbc3b87c6afe17013c319a446 /src/class | |
| parent | b39faa15effec35dceb95655b0db75c3fe564f3d (diff) | |
log clean up
Diffstat (limited to 'src/class')
| -rw-r--r-- | src/class/hid/hid_host.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/class/hid/hid_host.c b/src/class/hid/hid_host.c index a227c2a86..7444c10fe 100644 --- a/src/class/hid/hid_host.c +++ b/src/class/hid/hid_host.c @@ -442,9 +442,9 @@ uint8_t tuh_hid_parse_report_descriptor(tuh_hid_report_info_t* report_info_arr, uint8_t const data8 = desc_report[0]; - TU_LOG2("tag = %d, type = %d, size = %d, data = ", tag, type, size); - for(uint32_t i=0; i<size; i++) TU_LOG2("%02X ", desc_report[i]); - TU_LOG2("\r\n"); + TU_LOG(3, "tag = %d, type = %d, size = %d, data = ", tag, type, size); + for(uint32_t i=0; i<size; i++) TU_LOG(3, "%02X ", desc_report[i]); + TU_LOG(3, "\r\n"); switch(type) { |
