"package" is an odd logger name.  How do you name your logger(s)?  You stated the following in your original message: "...so that the classes in my package...".  What package?  A package named "package"?  Name the logger after the actual package name, such as "com.mycompany", rather than the likely non-existent package "package" and you will get the results you expect.

Jake

On Wed, 14 Sep 2011 16:44:21 -0430
 Néstor Boscán <nestor.bos...@tcs.com.ve> wrote:
This is the log4j.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/";
                     debug="false">
    <appender name="console" class="org.apache.log4j.ConsoleAppender">
        <param name="Threshold" value="INFO"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d{dd/MMM/yyyy
HH:mm:ss.SSSS} %m%n"/>
        </layout>
    </appender>
    <logger name="package" additivity="false">
        <level value="all"/>
        <appender-ref ref="console"/>
    </logger>
    <root>
        <level value="error"/>
        <appender-ref ref="console"/>
    </root>
</log4j:configuration>

Regards,

Néstor Boscán

On Wed, Sep 14, 2011 at 10:37 AM, Konduru, Geetha
<geetha_kond...@medco.com>wrote:

Would you please send the configuration...

-----Original Message-----
From: Néstor Boscán [mailto:nestor.bos...@tcs.com.ve]
Sent: Wednesday, September 14, 2011 11:06 AM
To: log4j-user@logging.apache.org
Subject: Log4J not generating DEBUG messages

Hi

I have a log4j.xml file configured so that the classes in my package should
generate ALL messages: When I create a simple test class and log info, warn
and error it works but all debug messages are not generated.

Any ideas?

Regards,

Néstor Boscán

**********************************************************************
This e-mail message and any attachments contain confidential information
from Medco. If you are not the intended recipient, you are hereby notified
that disclosure, printing, copying, distribution, or the taking of any
action in reliance on the contents of this electronic information is
strictly prohibited. If you have received this e-mail message in error,
please immediately notify the sender by reply message and then delete the
electronic message and any attachments.

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




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

Reply via email to