Android, where is the file for the application registered on the device?

I am running a custom Android application. inside this application I have different logical operators. Log.i(TAG, "I am in activityA") , etc. In which log file and in the directory this log file will be displayed. Will it be printed in the log file on the device, and if so, which one? Thanks Also, where to set the levels that will print? I assume that Log.d(TAG, "") will not be displayed in device logs, since it should be in debug mode ... Also where to set the log levels for the deployed application in manifest ?

+4
source share
1 answer

You can use logcat to view logs. You can run logcat as an adb command: open the windw command on your PC and enter

 $ adb logcat 

(OR)

 $ adb shell # logcat 

(OR)

You can execute it directly from the shell prompt of your target device.

+4
source

Source: https://habr.com/ru/post/1344220/


All Articles