SLF4J Logger 有时会清除控制台输出(不需要)
我正在使用 SLF4J + Logback 将消息输出到 eclipse IDE 控制台。
Logger LOG = LoggerFactory.getLogger(MyClass.class);
LOG.debug("test");
但有时整个控制台输出被清除,我看不到旧的消息。这些信息足够您帮助我吗?
I am using SLF4J + Logback to output messages to the eclipse IDE console.
Logger LOG = LoggerFactory.getLogger(MyClass.class);
LOG.debug("test");
But sometimes the whole console output gets cleared and i cannot see older messages. Is that enough information so that you can help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您可能会达到 Eclipse 中的默认控制台输出限制。您可以在“窗口”>“窗口”下编辑它。首选项>运行/调试>安慰。增加控制台缓冲区大小(默认为 80000 个字符)或取消选中“限制控制台输出”框。
It sounds like you might be hitting the default console output limit in Eclipse. You can edit it under Window > Preferences > Run/Debug > Console. Either increase the console buffer size (default is 80000 characters) or uncheck the "limit console output" box.