IntelliJ IDEA默認的Output輸出緩存區大小隻有1024KB,超過大小限制的就會被清除,並且還會顯示【too much output to process】
,可經過以下配置界面進行修改Override console cycle buffer size(
Settings→Editor
→General
→
Console
),
單位爲KB
若是須要禁用緩存區大小限制就須要修改配置文件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
修改配置以下所示:
idea.cycle.buffer.size=disabled
禁用後的界面以下所示: