在Spring-boot-starter-logging排除后,Wildfly 10没有日志

时间:2017-03-18 00:27:24

标签: spring logging spring-boot war wildfly-10

我正在使用WAR文件打包并在Wildfly 10上开发的Spring Boot中开发Web应用程序。 由于Logging类冲突的问题,我不得不按照此处的建议spring-boot-starter-logging排除https://stackoverflow.com/a/23991715使用以下代码:

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
  <exclusions>
    <exclusion>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-logging</artifactId>
    </exclusion>
  </exclusions>
</dependency> 

现在,应用程序已成功部署,但在Wildfly日志中我只看到了 ERROR [stderr] (ServerService Thread Pool -- 80) Handler java.util.logging.ConsoleHandler is not defined 有关部署的错误消息而不是调试/信息信息。

如何修复Wildfly日志?

0 个答案:

没有答案