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.
如何将 Jboss 中的类加载器的日志级别更改为 7?
作为旁注;我在 Jboss 5 及以下版本中找到了有关如何执行此操作的信息,但由于 Jboss 7 中的类加载和日志记录已完全改变,我无法弄清楚如何执行此操作。
https://community.jboss.org/wiki/EnableClassloaderLogging
在启动脚本中将以下内容添加到 JAVA_OPTS。
-verbose:class
以下是您的 Jboss 配置文件(例如standalone.xml)。
<profile> <subsystem xmlns="urn:jboss:domain:logging:1.1"> <logger category="org.jboss.as.deployment"> <level name="DEBUG"/> </logger> </subsystem> </profile>