Filtering Logcat Logs on commandline

前端 未结 6 1855
小鲜肉
小鲜肉 2021-02-01 01:59
public static final TAG = \"Legendry Eagle\";

Issue: I want to see logs of \"Legendry Eagle\" from the commandline.

I tried:

6条回答
  •  北海茫月
    2021-02-01 02:29

    Answer is very simple . Please remove space between two words and try again.

     public static final TAG = "LegendryEagle";
     adb logcat -s "LegendryEagle" 
    

    and see the logcat . You got your answer.

提交回复
热议问题