Where can I view log of LOG(INFO), LOG(DEBUG),.. in android ? I have tried adb logcat and dmesg but I didn't see it in anyone!
...
#include <android-base/logging.h>
...
LOG(INFO) << __func__ << " : Start HAL";
...
Where can I view log of LOG(INFO), LOG(DEBUG),.. in android ? I have tried adb logcat and dmesg but I didn't see it in anyone!
...
#include <android-base/logging.h>
...
LOG(INFO) << __func__ << " : Start HAL";
...
EDIT:
I'm not sure about LOG(INFO). . . adb logcat -b kernel
Generally the ALOGx() macros are used on AOSP native. By ALOGx I mean ALOGD , ALOGV etc. And the messages can be seen via logcat
#include <log/log.h>
ALOGD("Hello log");
See this header for more details: https://android.googlesource.com/platform/system/core/+/refs/heads/master/liblog/include/log/log_main.h