hi,

I have this log4j.xml file under resources dir:

<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/";>
    <appender name="appender" class="org.apache.log4j.ConsoleAppender">
        <layout class="org.apache.log4j.SimpleLayout" />
    </appender>
    <root>
        <priority value="DEBUG" />
        <appender-ref ref="appender" />
    </root>
</log4j:configuration>


If I have the call:

 Log.debug("Calling authenticate")


Was expected to have the log in Jetty console? if not, what Am I missing
here?

I need a simple logger to output logs in DEBUG level to the jetty console.


I did not have configured anythin in Boot.scala. Should I?

Thanks

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to