Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

UPDATE: This turned out to be a bug in R14 of the SDK tools. It has been fixed in R15 which was released on Oct. 27. Updating to the latest release solves the problem as suggested in the accepted answer.

I use the LogCat window in the Debug view in Eclipse to diagnose and fix crashes in my code. I've noticed that the LogCat output will automatically scroll down anytime new lines are added (but only after you scroll to the bottom yourself).

This is great if I'm waiting for an exception stacktrace to come up, but extremely annoying if I'm trying to read something in the log and more lines are continuing to be added at the bottom (it keeps jumping to the bottom, so I scroll back to the error, then it jumps to the bottom again).

Is there any way to make it stay where I've placed it, when I place it, but continue to scroll automatically when I reach the bottom?

EDIT: Please note, I'm aware of filters and I don't consider this a solution to the problem.

ANOTHER EDIT: If I scroll up "far enough" from the bottom, it stops scrolling automatically. Far enough might be 5 lines or it might be 500 lines, it seems to be related to how many lines are in the log. Ideally, it would stop scrolling as long as I was at least 1 line away from the bottom.

share|improve this question
which version of ADT do you have installed? R14 is now available and may be better behaved – Merlin Oct 26 '11 at 21:30
This has always happened to me but seems to be more aggressive in the latest version. – howettl Oct 26 '11 at 21:55
1  
Alternatively use the ddms perspective to view logcat output fullscreen ( or near as) ... I've found this makes life a little easier. – Merlin Oct 26 '11 at 23:38
It's not nice to accept an answer that says the same I said a week earlier. At least I'm glad your problem was finally fixed. – Sergio Oct 28 '11 at 11:55
Sorry @Sergio, I hummed and hawed over which one to select but I chose Josephus' answer because the solution was more clearly stated. – howettl Oct 28 '11 at 17:01
show 1 more comment

7 Answers

up vote 5 down vote accepted
+50

update to the latest version. the new logcat automatically filters your logs into the app-specific crash logs when you build-launch your app via eclipse.

share|improve this answer
I am running R14. The app I'm working on is quite large and has a lot of output so it is still a problem when looking at app-specific logs. – howettl Oct 27 '11 at 16:05
use a combination of Error filter and Tag filter. i can't see why you're still getting logs from other apps. – Josephus Villarey Oct 27 '11 at 16:29
I'm not getting logs from other apps. The app I'm working on has an enormous amount of log output. – howettl Oct 27 '11 at 16:58
you can change the tag of the specific log you're trying to catch. you can even "search for matches" on the text of the logs you're looking for. – Josephus Villarey Oct 28 '11 at 0:26
one last shot at your problem - pipe your adb logcat into a text file (applying the necessary filters of course). adb logcat > logs.txt – Josephus Villarey Oct 28 '11 at 0:30
show 1 more comment

In the LogCat tab on the upper far right there is a down pointing arrow with a line under it to enable

"Scroll Lock"

On older versions it's a pause button to

"Pause receiving new logcat messages"

That should do the trick!

share|improve this answer
4  
In most cases, the pause button just doesn't work... :( – Bojan Radivojevic Bomber Feb 21 '12 at 13:18
I would give you 1000 upvotes for Scroll Lock button! – Nemanja Boric Nov 19 '12 at 16:16

That's not what happens to me. If I scroll up it won't scroll down automatically when new lines come to the logcat until I scroll it to the bottom. Maybe it's because of the Eclipse or the Android SDK version. I'm using the latest right now.

share|improve this answer
I am also using the latest. Maybe this is related to something else I've noticed: if I scroll up "far enough" from the bottom, it stops scrolling automatically. Far enough might be 5 lines or it might be 500 lines, it seems to depend how many lines are in the log. – howettl Oct 20 '11 at 0:09

You can do adb logcat in a shell, and use your terminal app's scroll buffer and scrolling features to manage the logcat output.

share|improve this answer
2  
I would much rather use the Eclipse version. My productivity would drop drastically if I didn't have the cat icon :). – howettl Oct 25 '11 at 18:24
It doesn't have to be an either-or thing. You can use logcat in a shell at the same time the Eclipse logcat view is running. – mportuesisf Oct 25 '11 at 18:28
2  
I see what you're saying, but it would be better if there was some sort of setting that I could change to control how the output scrolls in Eclipse rather than jumping back and forth between the two windows. – howettl Oct 25 '11 at 18:43

If you're only debugging crashes, click on the red (E) (error) filter for your main logcat, and keep your filter tab set to default to view all lines that are being reported by your application.

What ends up happening, when your application crashes it stays closed unless requested to restart by your choosing. So, the last lines in the logcat will be the crash report. This is one of the ways of how I debug crashes.

share|improve this answer
That's an interesting workaround but it doesn't help in the case where I'm not looking for errors. – howettl Oct 25 '11 at 21:30

I also think it is "more aggressive" since the latest update! And it actually stops auto-scrolling when I scroll 10 or more lines up.

The best solution I have is clicking in the line you are interested in. If the logcat scrolls down too far and you don't see your line any more just press ArrowUp or ArrowDown to jump back to the line you were looking at.

share|improve this answer
I'm glad to hear I'm not alone with this issue. I wasn't aware that up/down would bounce back to the selected line which is effective but not a solution to the problem. It does stop auto-scrolling if I move up a certain amount but sometimes that is quite far (much more than 10 lines). – howettl Oct 27 '11 at 17:09
Actually I have R15 installed, just like the Josephus Villarey suggested. And auto-scrolling does only stop when I scroll at least 10 lines up O_o – ChriZzZ Oct 28 '11 at 7:55
Yes, it takes about 10 lines for it to stop with R15. With R14 it was much more than 10 (at least for me... different users seem to report different results). – howettl Oct 28 '11 at 17:03

Plop,

Window=>Preferences=>Android=>Logcat Unchecked the box: "Display logcat view when there are messagesfro, an application into the workspace"

++ Giz

share|improve this answer
1  
This prevents the logcat view from appearing on its own, but doesn't stop it from scrolling. Thanks though! – howettl Feb 23 '12 at 23:50

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.