仅供参考,在 logback 和 Intellij 13 中,这对我有用:
<pattern>%d{dd-MM-yyyy} %d{HH:mm:ss} %p %m - at %C.%M\(%F:%L\)%n</pattern>
注意:我需要“at”,还需要转义括号。大写的“C”也是 logback 中的完全限定类名。
使用此配置,我得到如下输出:
10-06-2014 10:10:58 INFO Bean 'mbeanServer' of type [class com.sun.jmx.mbeanserver.JmxMBeanServer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) - at org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker.postProcessAfterInitialization(AbstractApplicationContext.java:1374)
括号中的最后一部分在 Intellij 中显示为链接。