Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio doesn't display logs by package name

After running a project in log is added filter such as "app: My_Package_Name"

in /.idea/workspace.xml added:

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="AndroidConfiguredLogFilters">
    <filters>
      <filter>
        <option name="logLevel" value="verbose" />
        <option name="logMessagePattern" value="" />
        <option name="logTagPattern" value="" />
        <option name="name" value="app: com.zastavok.net" />
        <option name="packageNamePattern" value="com.zastavok.net" />
        <option name="pid" value="" />
      </filter>
    </filters>

But in this filter no results: enter image description here

But if I change filter to "No Filters", all results are displayed: enter image description here

How to solve this problem with logs by Package_Name?

like image 691
NickUnuchek Avatar asked Jan 26 '15 10:01

NickUnuchek


People also ask

Why is my Logcat not showing anything in Android?

Go to the File option > click on “INVALIDATE CACHES/RESTART” then a dialog box will pop up, Select the “INVALIDATE CACHES/RESTART” button. This will automatically restart and build the index of android studio.

Does package name matter Android Studio?

It shouldn't matter. In case you still wish to change, you have to unpublish your app and publish it as a new app. This is because Google identifies your app through you bundle ID, or package name as it is called. So you cannot repeat 2 package names.


1 Answers

Logs wasn't display because my app doesn't display in process.

So finally I got it working, by: Click on

enter image description here

Checking 'Show all processes' checkbox!

BUT as you see in the question, checkbox was on at the beginning, so there were multiple issues.

To summarize, these are other actions to be done:

  • Kill all adb processes (use ps -x | grep adb and kill -9 ****)
  • adb start-server in terminal
  • Reconnect device
  • adb device (to make sure device is connected successfully)
  • Make sure Android DDMS Devices | logcat shows your app and only one device is listed.
  • Check Show all processes checkbox
like image 64
NickUnuchek Avatar answered Oct 16 '22 19:10

NickUnuchek