Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 4953 invoked from network); 4 Sep 2005 22:39:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Sep 2005 22:39:50 -0000 Received: (qmail 11110 invoked by uid 500); 4 Sep 2005 22:39:50 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 11069 invoked by uid 500); 4 Sep 2005 22:39:50 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 11056 invoked by uid 99); 4 Sep 2005 22:39:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Sep 2005 15:39:49 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 04 Sep 2005 15:40:03 -0700 Received: (qmail 4920 invoked by uid 65534); 4 Sep 2005 22:39:48 -0000 Message-ID: <20050904223948.4919.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r278639 - /directory/shared/ldap/branches/new-codec-integration/apache2-provider/conf/log4j.conf Date: Sun, 04 Sep 2005 22:39:48 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sun Sep 4 15:39:43 2005 New Revision: 278639 URL: http://svn.apache.org/viewcvs?rev=278639&view=rev Log: Update the loggers for the TwixDecoder. All the classes have been added. Modified: directory/shared/ldap/branches/new-codec-integration/apache2-provider/conf/log4j.conf Modified: directory/shared/ldap/branches/new-codec-integration/apache2-provider/conf/log4j.conf URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/new-codec-integration/apache2-provider/conf/log4j.conf?rev=278639&r1=278638&r2=278639&view=diff ============================================================================== --- directory/shared/ldap/branches/new-codec-integration/apache2-provider/conf/log4j.conf (original) +++ directory/shared/ldap/branches/new-codec-integration/apache2-provider/conf/log4j.conf Sun Sep 4 15:39:43 2005 @@ -2,19 +2,113 @@ #################################################### # DEFAULT -log4j.rootLogger=WARN, APACHE-DS +log4j.rootLogger=DEBUG, APACHE-DS #################################################### log4j.appender.APACHE-DS=org.apache.log4j.ConsoleAppender log4j.appender.APACHE-DS.layout=org.apache.log4j.PatternLayout #log4j.appender.APACHE-DS.layout.ConversionPattern=%8r> [%-20.20C{1}] - %m%n -log4j.appender.APACHE-DS.layout.ConversionPattern=%8r> --%-30.30C{1}-- [%5.5p] %m%n +log4j.appender.APACHE-DS.layout.ConversionPattern=%8r --%-30.30C{1}-- [%5.5p] %m%n -# specific loggers -log4j.logger.org.apache.asn1new.ber.ldap.LdapDecoder=WARN +log4j.logger.org.apache.asn1new.ber.Asn1Decoder=INFO +log4j.logger.org.apache.asn1new.ber.grammar.AbstractGrammar=DEBUG -log4j.logger.org.apache.asn1new.ber.grammar.LdapMessageGrammar=WARN +# Ber grammar +log4j.logger.org.apache.asn1new.ber.grammar.AbstractGrammar=DEBUG +# The two followin classes does not have any logger +#log4j.logger.org.apache.asn1new.ber.grammar.GrammarAction=DEBUG +#log4j.logger.org.apache.asn1new.ber.grammar.GrammarTransition=DEBUG -log4j.logger.org.apache.asn1new.ber.Asn1Decoder=WARN -log4j.logger.org.apache.asn1new.ber.grammar.AbstractGrammar=WARN +#Ber TLV: none of the following classes does have a logger. +#log4j.logger.org.apache.asn1new.ber.tlv.Length=DEBUG +#log4j.logger.org.apache.asn1new.ber.tlv.Tag=DEBUG +#log4j.logger.org.apache.asn1new.ber.tlv.TLV=DEBUG +#log4j.logger.org.apache.asn1new.ber.tlv.Value=DEBUG + +# Ldap Codec +log4j.logger.org.apache.asn1new.LdapDecoder +log4j.logger.org.apache.asn1new.LdapMessageContainer + + +# Ldap grammars +log4j.logger.org.apache.asn1new.codec.grammar.AbandonRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.AddRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.AddResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.BindRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.BindResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.CompareRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.CompareResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.DelRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.DelResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.ExtendedRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.ExtendedResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.FilterGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.LdapControlGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.LdapMessageGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.LdapResultGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.ModifyDNRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.ModifyDNResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.ModifyRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.ModifyResponseGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.SearchRequestGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.SearchResultDoneGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.SearchResultEntryGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.SearchResultReferenceGrammar=DEBUG +log4j.logger.org.apache.asn1new.codec.grammar.UnBinRequestGrammar=DEBUG + +# Ldap codec Primitives +log4j.logger.org.apache.asn1new.codec.primitives.LdapDN=DEBUG +log4j.logger.org.apache.asn1new.codec.primitives.LdapString=DEBUG +log4j.logger.org.apache.asn1new.codec.primitives.LdapURL=DEBUG +log4j.logger.org.apache.asn1new.codec.primitives.RelativeLdapDN=DEBUG + +# Ldap codec utils +log4j.logger.org.apache.asn1new.codec.utils.DNUtils=DEBUG + + +# Beware ! Very verbose ... +log4j.logger.org.apache.asn1new.ldap.TwixDecoder=DEBUG +log4j.logger.org.apache.asn1new.ldap.TwixEncoder=DEBUG +log4j.logger.org.apache.asn1new.ldap.TwixTransformer=DEBUG + +# Pojos +log4j.logger.org.apache.asn1new.ldap.pojo.AbandonRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.AddRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.AddResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.AttributeValueAssertion=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.BindRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.BindResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.CompareRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.CompareResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.Control=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.DelRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.DelResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.ExtendedRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.ExtendedResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.LdapAuthentication=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.LdapMessage=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.LdapResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.LdapResult=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.ModifyDNRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.ModifyDNResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.ModifyRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.ModifyResponse=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.SaslCredentials=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.SearchRequest=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.SearchResultDone=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.SearchResultEntry=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.SearchResultReference=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.SimpleAuthentication=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.UnBinRequest=DEBUG + +# Pojo filters +log4j.logger.org.apache.asn1new.ldap.pojo.filters.AndFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.AttributeValueAssertionFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.ConnectorFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.ExtensibleMatchFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.Filter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.NotFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.OrFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.PresentFilter=DEBUG +log4j.logger.org.apache.asn1new.ldap.pojo.filters.SubstringFilter=DEBUG \ No newline at end of file