Output window of IntelliJ IDEA cuts output

Intellij IdeaConsole Output

Intellij Idea Problem Overview


Looks like there is a limit on the number of lines it shows.

I couldn't find it in the settings.

Is there a way to make IDEA keep everything in the Output window?

Intellij Idea Solutions


Solution 1 - Intellij Idea

Preferences/Settings -> Editor -> General -> Console, check the box next to Override console cycle buffer size, set to a larger number than 1024 KB.

Screenshot of the Setting Window

Solution 2 - Intellij Idea

Couldn't get more votes to close the question so I have to answer it myself.

IDEA_HOME\bin\idea.properties

#-----------------------------------------------------------------------
# This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb). Older lines are deleted.
# In order to disable cycle buffer use idea.cycle.buffer.size=disabled
idea.cycle.buffer.size=1024 

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
QuestionexpertView Question on Stackoverflow
Solution 1 - Intellij IdeaPradattaView Answer on Stackoverflow
Solution 2 - Intellij IdeaexpertView Answer on Stackoverflow