您的位置:首页 > 编程语言 > PHP开发

IntelliJ IDEA修改Output输出缓存区大小【应对:too much output to process】

2016-11-01 21:47 441 查看
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
禁用后的界面如下所示:


来自为知笔记(Wiz)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: