DWR 在 grails 中启用日志记录吗?

发布于 2024-11-09 23:29:08 字数 1118 浏览 2 评论 0原文

我正在使用 DWR3,但我不知道如何让日志记录工作。无论我做什么,当我尝试调试编组问题时,我似乎都看不到任何 DWR3 输出。如何启用日志记录?

web.xml

<servlet>
    <servlet-name>dwr</servlet-name>
    <servlet-class>org.directwebremoting.spring.DwrSpringServlet</servlet-class>
    <init-param>
        <param-name>jsonpEnabled</param-name>
        <param-value>true</param-value>
    </init-param>
    <init-param>
        <param-name>debug</param-name>
        <param-value>true</param-value>
    </init-param>
    <init-param>
        <param-name>accessLogLevel</param-name>
        <param-value>CALL</param-value>
    </init-param>
</servlet>

Config.groovy

debug 'org.directwebremoting.log.*'
info 'com.example.b'
debug 'com.example.a'

// Example of changing the log pattern for the default console
// appender:
//
appenders {
    console name: 'stdout', layout: pattern(conversionPattern: '%-5p: %c - %m%n')
}

这里发生了什么?

I'm using DWR3, but I have no idea how to get logging working. No matter what I do, I can't seem to see any DWR3 output as I attempt to debug a marshalling issue. How do I enable logging?

web.xml

<servlet>
    <servlet-name>dwr</servlet-name>
    <servlet-class>org.directwebremoting.spring.DwrSpringServlet</servlet-class>
    <init-param>
        <param-name>jsonpEnabled</param-name>
        <param-value>true</param-value>
    </init-param>
    <init-param>
        <param-name>debug</param-name>
        <param-value>true</param-value>
    </init-param>
    <init-param>
        <param-name>accessLogLevel</param-name>
        <param-value>CALL</param-value>
    </init-param>
</servlet>

Config.groovy

debug 'org.directwebremoting.log.*'
info 'com.example.b'
debug 'com.example.a'

// Example of changing the log pattern for the default console
// appender:
//
appenders {
    console name: 'stdout', layout: pattern(conversionPattern: '%-5p: %c - %m%n')
}

What's going on here?

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

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

发布评论

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

评论(1

猛虎独行 2024-11-16 23:29:08

不是确切的答案,但您可以使用此配置在前端获得更好的信息记录:

<dwr:configuration>
    ...
    <dwr:convert class="java.lang.Exception" type="exception"/>
    <dwr:convert class="java.lang.StackTraceElement" type="bean"/>
</dwr:configuration>

Not an exact answer, but you can get better logging of information on the front-end with this configuration:

<dwr:configuration>
    ...
    <dwr:convert class="java.lang.Exception" type="exception"/>
    <dwr:convert class="java.lang.StackTraceElement" type="bean"/>
</dwr:configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文