On Apr 6, 12:57 pm, Meryl Silverburgh <[email protected]> wrote: > I put calls to LOGV() in my cpp file in WebKit code in andorid, but I > don't see any log statements when I run 'adb logcat' in another shell. > But as soon as I change it to LOGE(), i see them. > Can you please tell me how can I see the log content of LOGV?
LOGV is compiled out of native code in "release" builds; see LOG_NDEBUG in system/core/include/cutils/log.h. You probably don't want to do a "debug" build on a device, so you can either mess with log.h, or just use LOGD instead of LOGV in your code. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

