commons记录打印时间戳,而不是漂亮的日期格式

时间:2015-08-20 13:39:27

标签: java logging slf4j

我正在使用apache commons logging。

public static int Find<T>(Func<T, bool> input)

用于打印日期的记录器如下

   <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
    </dependency>

<dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-jpa</artifactId>
        <version>1.1.0.RELEASE</version>
    </dependency>

但是现在它打印得像这样

  20-Aug-2015 13:15:39.740 INFO [http-nio-8080-exec-3] com.myapp.myclass Method 'mymethod' executed. Processing time: 2 ms

日志中的警告:

      91522432 [http-nio-8080-exec-3] INFO com.myapp.myclass Method 'mymethod' executed. Processing time: 2 ms <br/>

存在冲突,因为spring-data-jpa导入了另一个版本。 我如何在pom中排除它?

0 个答案:

没有答案