Android Code Snippet Monitoring the unfiltered logs for errors

On modern devices the unfiltered logs is extremely busy, making it very difficult to find something relevant.

If using ADB / USB debug mode then you can open command line in <android sdk>\platform-tools and run:
B4X:
adb logcat *:E

This will show logs of all apps with the "importance level" set to ERROR or higher.
I will add such a filter to the IDE.
 
Top