I know that the boot up log can be obtained by pulling out contents of kmsg
or dmesg
through ADB
.
But I'm not aware of how to retrieve the shutdown logs in Android as there's no /var
folder in Android (place where most desktop linux distros generally store their shutdown logs).
So how can I obtain the shutdown logs in Android?
One work around I found for collecting shutdown logs in Android is to run adb pull /proc/kmsg C:\Logs.txt
on the host PC and then switch off the device. You will get the logs till the USB communication between the host and the device snaps! I know this is only one case out of the numerous shutdown scenarios but I haven't found satisfactory answers for other cases!