Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I haven't use Android Studio (IntelliJ IDEA) before the logcat that show in Android Studio also show time and pid etc. on the left side of logcat. I want to hide those stuff (time and pid) I wanna see only message form Log.

Is there any suggestion?

enter image description here

share|improve this question
4  
Please vote for this requested feature code.google.com/p/android/issues/detail?id=69879 –  Ish Feb 19 at 7:09

5 Answers 5

I'm stuck on the same problem. As you pointed out this is a missing feature, I hope that it will be added in the future.

For now, I've mitigated the problem by enabling the "Use Soft Wraps" option that allow multiline logging in order to avoid the horizontal scrolling.

enter image description here

share|improve this answer

You can use PID Cat from Jake Wharton.

pidcat.py com.health.main

Screenshot

share|improve this answer

Batter You can use monitor. . set the path in environment variable C:\Program Files\Android\android-sdk\tools;
.
and type monitor
.
and you can filter any type of messages however you want. :)

share|improve this answer

on the right of the logcat you have verbose.. and there's a debug in that combobox

as for pid, if you press the second button on the right you get filters on the left and then you can add filters by pid , tag, message (also the log level as before -

v-verbose, d-debug, i-info, w-warn, e-error, a-assert

share|improve this answer
    
No now I just upload an image that describes what I really want. –  umitems Aug 8 '13 at 11:57
    
Thank you for your answer but I found that I'm explain the wrong way. I just want to hide the time and pid on the left and show the only the messages not only for debug but every messages. I also update my image again. –  umitems Aug 8 '13 at 12:06
    
it's OK :) maybe if you elaborate, it will be easier to help you –  Amir.F Aug 8 '13 at 12:08
    
Ok thank you . I'll try again :) –  umitems Aug 8 '13 at 12:10

In case to see only messages from Log.d(); switch Log level in logcat to Debug.

enter image description here

Check it in reference.

share|improve this answer
    
Thank you for your answer but I found that I'm explain the wrong way. I just want to hide the time and pid on the left and show the only the messages not only for debug but every messages. I also update my image again. –  umitems Aug 8 '13 at 12:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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