I am working on an Android project with some classes that I plan to pull out as a pure Java.jar (to be used in other java related projects). In these pure Java classes, I use System.out
to log. This is also an Android application though, so n my Android classes, I obviously use Log
.
In monitoring the pure java classes, I can't get System.out
to print out in my Eclipse logcat. I do see System.err
though.
Does anyone know how to get System.out
to display in LogCat in this fabled Log.i
level?
Setup
- Nexus 7 - Android 4.4.4 - Stock
- Eclipse Kepler
- Android SDK 21
- Ubuntu 12.04 64 bit
- Monitoring all messages tab in Logcat, logcat set to verbose
I've Tried
adb root
adb shell start
adb shell setprop log.redirect-stdio true
adb shell stop
- Logcat is set to verbose
- Nothing in Console under Android or DDMS