如何在 Ant 的控制台中关闭大部分 hbm2ddl 输出?
默认情况下,hbm2ddl 在执行 ant 任务时会向控制台输出大量输出。我想完全关闭它,如果出现问题,只需查看架构文件。有人知道该怎么做吗?
By default, hbm2ddl spits a ton of output to the console when executing the ant task. I'd like to turn this completely off and simply look at the schema file if something has gone wrong. Anyone know how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Hibernate(至少是当前版本)使用 SLF4J 进行日志记录。使用 SLF4J NOP 静默丢弃所有日志记录。或者,您可以为日志框架配置低级详细程度(例如 log4j)。
log4j.properties 示例:
Hibernate (at least the current version) uses SLF4J for logging. Use the SLF4J NOP to silently discarding all logging. Alternatively you could configure a low level verbosity for your logging framework (e.g. log4j).
A sample log4j.properties:
有一个未记录的属性应该在任务中定义:
对我来说它有效!
There is undocumented property which should be defined in task:
For me it works!