Notifications
Clear all
Topic starter
17/05/2015 7:11 am
Have any of you extracted logs from a rooted Android device? I need to know what the *default* format Android stores its logs is. If a date is July 24, 2013, does it appear as
2013-07-24
07/24/2013
24-07-2013
Does anyone here know?
And secondly, does each log file contain a standard extension such as *.log?
Thank you all.
28/05/2015 3:56 pm
Did you try logcat, dumpsys, dmesg commands to extract logs from rooted android devices?
13/06/2015 11:25 pm
I'm not sure what kind of log buffer you're looking for but you can always try and run
logcat -b radio -v time -d
This will dump all of the radio buffer log and print out the timestamps of each event. Also, the buffer (-b) can be changed to your liking.