Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个通过 Maven 导入的包,它记录了很多级别的DEBUG消息。由于我无法控制这个包的logback.xml(?),我可以以其他方式将包的输出抑制为stdout吗?
DEBUG
logback.xml
stdout
因为我无法控制这个包的logback.xml(?)
是的你可以:
<logger name="com.example.foo" level="ERROR" />
com.example.foo您要过滤的包在哪里。它通常与工件的groupId. 也考虑WARN水平,OFF也是可能的,但是它可能隐藏重要的问题。
com.example.foo
groupId
WARN
OFF