HI,I am building Chromium for Android. I want to do some experiments with the build writing log statements, How can I do this?
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
Ah, sorry, I assumed you were familiar with Android logging, my bad.
The way you see logs on Android is by running :
adb logcat
adb is regularly part of the Android sdk. There should be a copy checked inside the chromium tree at this location:
$CHROME_SRC/third_party/android_tools/sdk/platform-tools/adb
Note that the log is going to be pretty spammy. If you want to see only errors, you can do:
adb logcat *:E
Or eventually to filter only chrome logging entries
adb logcat | grep chromium
(IIRC all the LOG commands in chrome should be translated into __android_log_print commands which have tag="chromium")