Adjusting Eclipse console size

Eclipse

Eclipse Problem Overview


In Eclipse, how do you adjust the maximum lines in the console window? My program outputs 2000 lines of numbers and Eclipse truncates it so therefore I am missing some numbers.

It says here:

http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm

that it's under run/debug > console, but I don't see that option anywhere.

Eclipse Solutions


Solution 1 - Eclipse

In Window > Preferences > Run/Debug > Console, there's a checkbox "Limit console output" and a text field for entering the buffer size of the console.

Have never changed those settings myself but sounds like this could be what you are looking for. I am using Eclipse 3.3.2.

Solution 2 - Eclipse

Right click on the console > Preferences > Console buffer size

If you don't want any limit, uncheck the "Limit console output" checkbox.

Mine is currently set to 800000, which is enough.

Solution 3 - Eclipse

I had a similar problem with my c++ build console. This is set in Preferences->C/C++->Build->Console

Solution 4 - Eclipse

Same thing I also forgot every time. Step 1: form toolbar click on 'window' then 'preference' step 2: go'run/Debug' form lift side of preference window and select 'console' step 3: In right side of windows increase the size of 'Console buffer size(characters)' step 4: click ok to exit [window -->preference -->run/Debug -->console -->Console buffer size(characters)] enter image description here

Solution 5 - Eclipse

Later versions of eclipse should have it under Eclipse > Preferences > Run/Debug > Console. Then uncheck the "Limit console output" box.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionaherlambangView Question on Stackoverflow
Solution 1 - EclipseMelView Answer on Stackoverflow
Solution 2 - EclipseBozhoView Answer on Stackoverflow
Solution 3 - EclipseloonixView Answer on Stackoverflow
Solution 4 - EclipseFahim FaysalView Answer on Stackoverflow
Solution 5 - EclipseSaleem HalipotoView Answer on Stackoverflow