0

I'm developing a simple Android app using Android Studio for Linux, I'm debugging the app in my Android phone (Huawei Y300). The thing is, in the output I see information about dalvik, signal strength and some other stuff that I don't want to see.

Is there a way to just see the output of the debugging app?

3
  • have you tried logcat?
    – Nathua
    Commented Jan 25, 2014 at 12:12
  • @nr4bt isn't that logcat? Commented Jan 25, 2014 at 12:17
  • I wasn't sure what you were using, you can filter logcat output by using package name or other filter criterias, in that way, you'll only see your app output.
    – Nathua
    Commented Jan 25, 2014 at 12:18

1 Answer 1

1

If you are using LogCat, I'd recommend using a filter. You can do this by either right-clicking one of the log lines of your app and pressing Find similar messages... or by following these steps:

  1. Press + in the Saved Filters section to the left of LogCat.
  2. Add a filter name
  3. Either your desired TAG or Application name
  4. Press OK

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.