I\'m testing with a real device connected to Android Studio. Because of multithreading behavior that I don\'t want to interrupt I\'ve added lots of log statements to my code
You could start the logcat in a terminal: developer.android.com/tools/help/adb.html#logcat
[adb] logcat [option] ... [filter-spec] ...
and pipe it to a txt file
win
PATH\TO\YOUR\ADB\ adb.exe logcat > log.txt
or
linux
PATH\TO\YOUR\ADB\ adb logcat| tee log.txt