My problem is that I try to debug a running app with an exception that happens after long running. In the mean time, the DDMS log cat logs any output from the phone, which is about >1000 messages per second for some buffer output.
Thus, all error messages from my app are not only drowned, but erased from the log output window within moments, with no way to save it in time.
In here was mentioned a way to direct the output into a file, but using
adb logcat -s > ~/log2.txt
only outputs
--------- beginning of /dev/log/system
--------- beginning of /dev/log/main
And then nothing. The docs are not helpful at all.
Any hints?