Gregory,
Is your log4j.properties file in the classpath?

-Richard

Engel, Gregory A wrote:
I don't.
Ibatis does it automatically according to the docs...
"Configuring the commons logging services is very simply a matter of including one or more extra configuration files (e.g. log4j.properties) and sometimes a new JAR file (e.g. log4j.jar)." This used to work fine. But I started getting the logging error message a while back. Honestly I don't
know what I changed that could have set it off.

    -----Original Message-----
    *From:* Yee, Richard K CTR DMDC
    [mailto:[EMAIL PROTECTED]
    *Sent:* Wednesday, March 08, 2006 2:22 PM
    *To:* '[email protected]'
    *Subject:* RE: Log 4j prob

    Gregory,
    The warning indicates that some code is logging to Log4J before
    you call PropertyConfigurator.configure(). Where do you initialize
    Log4J? Do you do it in a servlet or a ContextListener?
-Richard
        -----Original Message-----
        *From:* Engel, Gregory A [mailto:[EMAIL PROTECTED]
        *Sent:* Wednesday, March 08, 2006 10:30 AM
        *To:* '[email protected]'
        *Subject:* Log 4j prob

        Not really an Ibatis question per se but I'm sure someone here
        has seen this....
log4j:WARN No appenders could be found for logger
        (java.sql.Connection).
        log4j:WARN Please initialize the log4j system properly.
My log4j.properties file looks like.... # Set root logger level to DEBUG and its only appender to A1.
        log4j.rootLogger=INFO, Appender1
        log4j.appender.Appender1=org.apache.log4j.ConsoleAppender
        log4j.appender.stdout=org.apache.log4j.ConsoleAppender
        log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
# A1 uses PatternLayout.
        log4j.appender.Appender1.layout=org.apache.log4j.PatternLayout
        log4j.appender.Appender1.layout.ConversionPattern=%-5p
        %-25C{1}: %m%n
#log4j.rootCategory=DEBUG, Chainsaw
        #log4j.appender.Chainsaw=org.apache.log4j.net.SocketAppender
        #log4j.appender.Chainsaw.remoteHost=localhost
        #log4j.appender.Chainsaw.port=4445
        #log4j.appender.Chainsaw.locationInfo=true
log4j.logger.com.ibatis=DEBUG
        log4j.logger.java.sql.PreparedStatement=DEBUG
        log4j.logger.java.sql.Statement=DEBUG
        log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG
        log4j.logger.java.sql.ResultSet=DEBUG
        log4j.logger.java.sql.Connection=DEBUG
This used to work fine but somewhere along the line it stopped
        working.


Reply via email to