mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_miatoll.git
synced 2025-05-17 03:27:34 +09:00
For some reason Xiaomi built audio HAL with "very very verbose" logging enabled [1] and it spams really too much. Just shim the whole log function to do nothing. [1] https://github.com/LineageOS/android_hardware_qcom_audio/blob/c659e83702/hal/audio_hw.c#L41 Co-authored-by: Jan Engelmohr <jan.engelmohr@mailbox.tu-dresden.de> Change-Id: Iff278c44f203dc7b81bccb2281edfc3f5687a47c
6 lines
111 B
C++
6 lines
111 B
C++
#include <log/log.h>
|
|
|
|
int __android_log_print(int prio, const char* tag, const char* fmt, ...) {
|
|
return 0;
|
|
}
|