tags:

views:

53

answers:

1

I have file on SD-CARD and my app using it as log file. Is it possible through the adb to watch file with all changes in real time? Like with tail -f /sdcard/myfile.log command.

A: 

You can do this with logcat. You can add a view that will only show log entries from your app and it will be continuously updated.

BrennaSoft
Yes I know about possibilities of Android logger. But, I need log in specific own format. This is requirements of the my employer.At the moment I do not see other opportunities to watch log besides rooting and busybox installation.
vochupin