Don't you miss the Weblogic console when developing Oracle ADF Mobile applications?? I do.. Well there is a neat workaround for Android.
Oracle ADF Mobile outputs quite a bit of debug information onto the Android logcat, which is quite useful.
To see the Android logcat, you can execute the following command (Windows or Linux)
adb logcat
and logcat will continue logging everthing which happens on your android phone to your operating systems command line..
However a better approach is to use Eclipse logcat.
If you install eclipse and install the Android Development Toolkit (link) you get the same functionality as the command line logcat, but with the additional features
- Pretty colours, makes it easier to see Information vs Debug messages
- A quick & easy UI for setting up filters , so you can configure it to filter only for messages from your application
Useful..