Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Talk:Jetty/Feature/Jetty Logging

Revision as of 18:52, 15 September 2012 by Mondgesicht.gmx.net (Talk | contribs) (Order of logging detail: new section)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

setDebugEnabled missing

This article currently has this entry:

...................

Changing log level in etc/jetty.xml
<Get class="org.eclipse.jetty.util.log.Log" name="log">
    <Call name="setDebugEnabled">
        <Arg type="boolean">true</Arg>
    </Call>
</Get>

...................

Class org.eclipse.jetty.util.log.Log does not have a method called setDebugEnabled. Can someone fix the example, and say what it is good for? --Abdull 12:33, 28 August 2012 (UTC)

Different System Properties

This article, under section Configuring Jetty StdErrLog names system properties and system property values which are different from those mentioned in the Javadoc documentation for StdErrLog (e.g. wiki pages mentions logging levels INFO, DEBUG, WARN, NONE, but Javadoc page mentions logging levels ALL, DEBUG, INFO, WARN) ... (e.g. wiki page mentions system property org.eclipse.jetty.util.log.stderr.LONG=<boolean>, but Javadoc mentions system property org.eclipse.jetty.util.log.LONG=<boolean> without the stderr part). --Abdull 13:07, 28 August 2012 (UTC)

Order of logging detail

What is the order of log details? Is it INFO -> DEBUG -> WARN -> NONE, (from highest detail to lowest detail), as this article hints? --Abdull 22:52, 15 September 2012 (UTC)

Back to the top