Hibernate 干扰 Javamail 日志记录
我正在使用 Javamail 构建一个应用程序。
出于日志记录的目的,我设置:
properties.put("mail.debug", true);
这启用了 Javamail 的日志记录并为我提供了许多有用的调试信息。
现在,我安装了 Hibernate,它还会向控制台打印大量信息(除了它使用的 SQL 语句),但突然间,Javamail 日志记录信息消失了。
我不确定原因是什么,但我认为 Hibernate 与此有关。
有谁知道如何解决或至少调试这个问题?
I am building an application using Javamail.
For logging purposes, I set:
properties.put("mail.debug", true);
That enabled logging for Javamail and gives me a lot of useful debugging info.
Now, I installed Hibernate which also prints a lot of info to the console (except for the SQL statements it uses) but all out of sudden, the Javamail logging info disappeared.
I am not sure what the cause is but I assume that Hibernate has something to do with this.
Does anyone know how to solve or at least debug this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我用这个替换了整个 log4j 配置文件,解决了问题:
I replaced my entire log4j config file with this and that solved the problem:
作者:
消失
,你的意思是它根本不在你的日志中,或者你只是在控制台上看不到它,因为休眠记录了很多?
您可以尝试将hibernate的日志设置为INFO。
By
disappeared
, do you mean it is not in your log at all or you just can't see it on the console because hibernate is logging a lot?
You can try setting the log of hibernate to INFO.