Android Studio doesn't display logs by package

2020-08-25 05:34发布

问题:

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:

But if I change filter to "No Filters", all results are displayed:

How to solve this problem with logs by Package_Name?

回答1:

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

So finally I got it working, by: Click on

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