This works for me. 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
 
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/";>
 
        <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
                <layout class="org.apache.log4j.PatternLayout">
                        
                </layout>
        </appender>

        <logger name="java.sql">
                <level value="DEBUG" />
        </logger>
        
        <root>
                <level value="DEBUG" />
                <appender-ref ref="CONSOLE" />
        </root>
 
</log4j:configuration>


McRose wrote:
> 
> I configured the logging like the example in the tutorial, but I have to
> open the server.log file to see it
> 
> is there a way to put it out into the eclipse console ?
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Feature-for-iBatis-tp25049482p25074917.html
Sent from the iBATIS - User - Java mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org
For additional commands, e-mail: user-java-h...@ibatis.apache.org

Reply via email to