使用 slf4j 和“logback”进行日志记录,但不创建配置中指定的日志文件。 (使用maven、码头)

发布于 2024-10-22 03:02:52 字数 1233 浏览 2 评论 0原文

正如标题中所指定的,我正在使用 Maven 和 Jetty。用于使用 SLF4J 和 Logback 进行日志记录。我在“src/main/resources”中有“logback.xml”。

    <configuration>
        <appender name="STDOUT"
                class="ch.qos.logback.core.ConsoleAppender">
            <layout class="ch.qos.logback.classic.PatternLayout">
                <pattern>%-4relative [%thread] %-5level %class - %msg%n</pattern>
            </layout>
        </appender>

        <appender name="FILE"
            class="ch.qos.logback.core.FileAppender">
            <layout class="ch.qos.logback.classic.PatternLayout">
                <pattern>%-4relative [%thread] %-5level %class - %msg%n</pattern>
            </layout>
            <File>myLog.log</File>
        </appender>

        <logger name="org.mortbay">
            <level value="debug" />
        </logger>

        <root>
            <level value="error" />
            <appender-ref ref="STDOUT" />
            <appender-ref ref="FILE" />
        </root>
</configuration>

但我的问题是,如果我运行/调试项目,它不会创建文件“myLog.log”。获取日志文件的解决方案是什么。

有没有办法只用SLF4J获取日志文件?

As specified in title I'm using Maven, and Jetty. For logging using SLF4J and Logback. I have 'logback.xml' at 'src/main/resources'.

    <configuration>
        <appender name="STDOUT"
                class="ch.qos.logback.core.ConsoleAppender">
            <layout class="ch.qos.logback.classic.PatternLayout">
                <pattern>%-4relative [%thread] %-5level %class - %msg%n</pattern>
            </layout>
        </appender>

        <appender name="FILE"
            class="ch.qos.logback.core.FileAppender">
            <layout class="ch.qos.logback.classic.PatternLayout">
                <pattern>%-4relative [%thread] %-5level %class - %msg%n</pattern>
            </layout>
            <File>myLog.log</File>
        </appender>

        <logger name="org.mortbay">
            <level value="debug" />
        </logger>

        <root>
            <level value="error" />
            <appender-ref ref="STDOUT" />
            <appender-ref ref="FILE" />
        </root>
</configuration>

But my problem is its not creating the file 'myLog.log' if I run/debug the project. What's the solution to get the log file.

Is there any way to get the log file only with SLF4J?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凯凯我们等你回来 2024-10-29 03:02:52

对不起!我误解了“Logback”的用法。我从 http://www.mail-archive.com/[电子邮件受保护]/msg00661.html

看来你理解错了
SLF4J 的目的。如果你放置
slf4j-jdk14-1.5.6.jar 然后 slf4j-api
将与 java.util.logging 绑定。
不会使用 Logback。仅当你
放置 logback-core.jar 和
logback-classic.jar 在你的类路径中
(但不是 slf4j-jdk14-1.5.6.jar)将
SLF4J API 与 logback 绑定。 SLF4J
与一个且仅一个底层绑定
日志记录 API(每个 JVM 启动)。

HTH,

感谢 Ceki Gulcu。现在我可以在我的文件中获取日志。

Sorry! I misunderstood the usage of 'Logback'. I got solution from http://www.mail-archive.com/[email protected]/msg00661.html

i.e.

It appears that you have misunderstood
the purpose of SLF4J. If you place
slf4j-jdk14-1.5.6.jar then slf4j-api
will bind with java.util.logging.
Logback will not be used. Only if you
place logback-core.jar and
logback-classic.jar on your class path
(but not slf4j-jdk14-1.5.6.jar) will
SLF4J API bind with logback. SLF4J
binds with one and only one underlying
logging API (per JVM launch).

HTH,

Thanks to Ceki Gulcu. Now I can able to get logs in my file.

月下客 2024-10-29 03:02:52

如果您使用 JBoss 5.1 并且遇到同样的问题 [logback 未写入文件],则在 jboss-web.xml 中添加以下内容。

<class-loading>
    <loader-repository>
        com.hp:classloader=logback-slf4j
        <loader-repository-config>java2ParentDelegation=false</loader-repository-config>
    </loader-repository>
</class-loading>

这应该可以解决你的问题。

If you are using JBoss 5.1 and you are having the same problem[logback not writing to file] then add the following in jboss-web.xml.

<class-loading>
    <loader-repository>
        com.hp:classloader=logback-slf4j
        <loader-repository-config>java2ParentDelegation=false</loader-repository-config>
    </loader-repository>
</class-loading>

This should solve your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文