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.
我可以仅使用 logback.xml 覆盖特定类的日志记录级别吗?即,所有内容都保留在 INFO 中,除了将登录 DEBUG 的一类。
我在默认值之后附加了这个,但似乎不起作用
<logger name="com.pack1.pack2.paack3.ClassName" additivity="false" level="debug"> <appender-ref ref="file1"/> </logger>
谢谢,唐纳德
完全这样做对我有用:
<logger name="org.apache.zookeeper" level="WARN" />
(如果您明确设置记录器的名称)检查记录器的名称是否与您在源代码中为记录器设置的名称匹配。
对级别关键字(DEBUG、INFO ....)使用大写字母,我不确定,但也许您应该使用 Level 而不是 level。
我很确定我以前做过,而且效果很好。试试大写的DEBUG。