Eclipse Scout Log4j没有为记录器找到appender

时间:2015-04-07 09:37:31

标签: log4j appender eclipse-scout

在scout eclipse应用程序中,我尝试配置Log4j。

当我启动服务器时,我得到:

log4j:WARN No appenders could be found for logger (org.jboss.logging).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

我有文件log4j.properties,我把它放在文件夹中,在类路径中。

enter image description here

我需要在哪里放置此文件以便应用程序可以从中读取文件?

马尔科

1 个答案:

答案 0 :(得分:0)

我几天前也遇到了同样的问题。我也用maven。使用此日志记录依赖项的对象抛出警告。有几种方法可以记录。 对我来说,它可以将以下依赖项添加到我的POM.xml

<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.12</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.12</version>
        </dependency>