直到昨天,我还是 restlet 2.0.15 的快乐用户,当时他们似乎已经从他们的 Maven 存储库中停止了 2.0.x 版本,所以我不得不升级到 2.1.1。
在旧版本中,我使用 SLF4J 作为 Log4J 的桥梁,并且能够将 restlet 日志获取到基于 Log4J 的日志系统。这不再适用于 restlet 2.1.1。有什么想法我需要解决吗?
这是它的工作方式:
public static void initLogging() {
// install the SL4J bridge such as the org.restlet logging messages to
// be appended to Log4J too, from the default java.util.logging based
// implementation
SLF4JBridgeHandler.install();
...
if (log4j != null) {
DOMConfigurator.configure(log4j);
}
log = Logger.getLogger(SomeClass.class);
}