DBUnit 中的日志输出

发布于 2024-11-07 11:57:55 字数 64 浏览 5 评论 0原文

我觉得这是我可以轻松弄清楚的事情,但我很难找到有关如何更改 DBUnit 日志级别的信息。谁能为我解决这个问题吗?

I feel that this is something I could easily figure out but I'm having a hard time finding information on how to change the log level of DBUnit. Can anyone solve this problem for me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烟酉 2024-11-14 11:57:55

使用 log4j 时,将以下内容添加到您的 log4j.properties 中:

# DbUnit
log4j.logger.org.dbunit=ERROR

When using log4j add the following to your log4j.properties:

# DbUnit
log4j.logger.org.dbunit=ERROR
网名女生简单气质 2024-11-14 11:57:55

在回避这个问题一段时间后,我找到了解决方案。

import org.slf4j.Logger
import org.slf4j.LoggerFactory
import ch.qos.logback.classic.LoggerContext;
import ch.qos.logback.core.util.StatusPrinter;
import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.Logger;


Logger logger = (Logger)LoggerFactory.getLogger("org.dbunit")
logger.setLevel(Level. ERROR);

希望这能引导某人解决他们自己的类似问题。

After avoiding the problem for a while, I came to a solution.

import org.slf4j.Logger
import org.slf4j.LoggerFactory
import ch.qos.logback.classic.LoggerContext;
import ch.qos.logback.core.util.StatusPrinter;
import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.Logger;


Logger logger = (Logger)LoggerFactory.getLogger("org.dbunit")
logger.setLevel(Level. ERROR);

Hopefully this lead someone to a solution to their own similar problem.

萌能量女王 2024-11-14 11:57:55

使用 Spring Boot 时,您只需将以下属性添加到您的 application.properties 中:

logging.level.org.dbunit: ERROR

When using Spring Boot, you may simply add the following property to your application.properties:

logging.level.org.dbunit: ERROR
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文