I want to use java.util.logging on Android. I want to configure the logging system with logging.properties. But how can I tell Android using the specific configure file? For
At least on Android 4.3, with unchanged Handler, if you use
adb shell setprop log.tag.YOURTAG DEBUG
You can see messages logged with up to Level.FINE in logcat. I haven't figured out a way to log higher levels, but that's sufficient for me.