I do not work the android studio logcat

1

Yesterday I worked perfectly and read the Log.d and the errors and today I get this after an update of Android Studio. I do not know how to make me show everything again.

  

05-19 16: 12: 00.133 19011-19011 /? E / FirebaseInstanceId: Failed to   resolve target intent service, skipping classname enforcement

     

05-19 16: 12: 00.136 19011-19011 /? E / FirebaseInstanceId: While error   delivering the message: ServiceIntent not found.

     

05-19 16: 13: 08.388 5448-5455 /? W / SQLiteConnectionPool: A   SQLiteConnection object for database   '/data/user/0/com.google.android.gms/databases/metrics.db' was leaked!   Please fix your application to end transactions in progress properly   and to close the database when it is not longer needed.

     

05-19 16: 13: 08.389 5448-5455 /? W / SQLiteConnectionPool: A   SQLiteConnection object for database   '/data/user/0/com.google.android.gms/databases/help_responses.db.18'   was leaked! Please fix your application to end transactions in   progress properly and to close the database when it is not longer   needed.

     

05-19 16: 13: 08.389 5448-5455 /? W / SQLiteConnectionPool: A   SQLiteConnection object for database   '/data/user/0/com.google.android.gms/databases/auto_complete_suggestions.db'   was leaked! Please fix your application to end transactions in   progress properly and to close the database when it is not longer   needed.

     

05-19 16: 13: 15.934 24397-24397 /? I / FA: App measurement is starting up,   version: 10298

     

05-19 16: 13: 15.934 24397-24397 /? I / FA: To enable debug logging run:   adb shell setprop log.tag.FA VERBOSE

     

05-19 16: 13: 15.961 24397-24397 /? I / FA: To enable faster debug mode   event logging run:                                            adb shell setprop debug.firebase.analytics.app de.mdiener.rain.usa

    
asked by wasous 19.05.2017 в 16:23
source

1 answer

3

The update does not think it can cause the LogCat not to work, I suggest you check this:

  
  • The selected device is "online" and is the one with the application from which you want to obtain the information in the LogCat.
  •   
  • Review the correct application package, sometimes you may not have defined or have defined another application.
  •   

Check the Log level, select one of the following values:

  
  • Verbose : All log messages are displayed (default setting).
  •   
  • Debug : Debug log messages are displayed that are useful during development only, as well as levels of   message below on this list.
  •   
  • Info : The expected log messages are displayed for regular use, as well as the message levels below in this list.

  •   
  • Warning : possible problems that are not considered as errors are still displayed, and message levels, below in this   list. Error: the problems that caused errors are displayed, and   also the message level, lower on this list.

  •   
  • Assert : Problems are displayed that the developer expects will never happen.
  •   

If you have it defined as Verbose , they will all be displayed.

Remember also to check the filters, remember that you can search by word or have a defined filter, if you have a defined word only the texts with that word will be shown in LogCat .

More information in the official documentation:

Write and view logs in the LogCat.

    
answered by 19.05.2017 / 17:35
source