You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-user@logging.apache.org by Rakesh Patel <Ra...@sharepeople.com> on 2005/09/29 16:54:25 UTC

RE: Cannot turn off logging when using Junit - SOLVED

Hi,

Ok I built from source using the latest in cvs. It wasn't as hard as I
thought it would be (not sure why all 3rd party libs are not included
though in cvs?).

Turning the logging to OFF does what I need now!

Thanks for the help,

Rakesh

-----Original Message-----
From: Jacob Kjome [mailto:hoju@visi.com] 
Sent: 29 September 2005 15:12
To: Log4J Users List
Subject: RE: Cannot turn off logging when using JUnit


Quoting Rakesh Patel <Ra...@sharepeople.com>:

> I am indeed using the 1.3 alpha version.
>
> However, adding this line makes no difference:
>
> log4j.logger.org.apache.log4j=WARN
>
> Jake, your last paragraph contradicts itself. You say the internal 
> code cannot be overriden and then you say it can?
>

Sorry if I wasn't clear.  When I said "Note that, besides this", I meant
to exclude the rest of the comments from the previously described
hardcoded behavior that is in the current alpha, but removed from the
latest source.

So, there is no contradiction.  They were two completely separate trains
of thought of two entirely different logging issues.

> Any idea when the next release will fix this (no time to build from 
> source)?
>

I believe that some of the developers are working on getting a new
release out as we speak!

Jake

> Thanks
>
> Rakesh
>
> -----Original Message-----
> From: Jacob Kjome [mailto:hoju@visi.com]
> Sent: 28 September 2005 23:14
> To: Log4J Users List; Mark Womack
> Subject: Re: Cannot turn off logging when using JUnit
>
>
> Quoting Mark Womack <mw...@apache.org>:
>
> > Can we assume that you are using the 1.3 alpha version? You will 
> > want to add configuration to set org.apache.log4j to WARN/ERROR or 
> > OFF.
> >
>
> I think at some point, the auto-logging of logger creation internal to

> Log4j-1.3 in CVS was removed.  The current release alpha still has it 
> turned on no matter what.
>
> I suggest either waiting for the next alpha release or building 
> yourself from source.  Note that, besides this, you control log4j 
> internal logging using normal log4j configuration, just like any other

> logger. So, if you want to turn off log4j logging, then make sure to 
> set the level pretty high for the org.apache.log4j logger.
>
>
> Jake
>
> > hth,
> > -Mark
> >
> > On 9/28/05, Rakesh Patel <Ra...@sharepeople.com> wrote:
> > >
> > > Hi,
> > >
> > > I have a test set up that logs and also the class under test logs 
> > > too.
> > >
> > > I want to turn of logging at times but am finding that the console

> > > ALWAYS logs INFO messages of the loggers being created (my user 
> > > defined log entries are not displayed).
> > >
> > > I've tried various settings in the property file but I just cannot

> > > stop these entries going to the console.
> > >
> > > Here's my property file:
> > >
> > > log4j.rootLogger=OFF, stdout, R 
> > > log4j.appender.stdout=org.apache.log4j.ConsoleAppender
> > > log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
> > >
> > > # Print the date in ISO 8601 format 
> > > log4j.appender.stdout.layout.ConversionPattern=%d [%t] %-5p %c - 
> > > %m%n
> > >
> > > #log4j.appender.R=org.apache.log4j.FileAppender
> > > log4j.appender.R.File=app.log
> > >
> > > log4j.appender.R.layout=org.apache.log4j.PatternLayout
> > > log4j.appender.R.layout.ConversionPattern=%d %-5p %c - %m%n
> > >
> > > # Vary level for packages log4j.logger.org.springframework=ERROR
> > >
> > > And here's the bit of my initialisation code in my Junit setUp:
> > >
> > > protected void setUp() throws Exception {
> > >
> > > PropertyConfigurator.configure("c:/Projects/FETServer/conf/log4j.p
> > > ro
> > > pert
> > > ies");
> > > // initialise datasource
> > > _logger.info("One-time setUp()");
> > > _logger.info("intializing connection...");
> > > dataSource = new SingleConnectionDataSource();
> > > dataSource.setDriverClassName(
> > > "oracle.jdbc.driver.OracleDriver");
> > > dataSource.setUrl(
> > > "jdbc:oracle:thin:@132.25.50.69:1521:ORCL01");
> > > dataSource.setUsername("scott");
> > > dataSource.setPassword("tiger");
> > >
> > > dao = new SampleDao(dataSource);
> > > }
> > >
> > > And here's whats going to the console:
> > >
> > > *** configurationOptionStr=null
> > > ** End of LogManager static initializer
> > > log4j:INFO Creating new logger 
> > > [com.amex.ifst.fet.dao.TestSampleDao]
>
> > > in repository [default]. log4j:INFO Creating new logger 
> > > [org.apache.log4j] in repository [default]. log4j:INFO Creating 
> > > new logger
> [org.apache.log4j.PropertyConfigurator]
> > > in repository [default].
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Creating new logger
> [org.apache.log4j.config.PropertySetter]
> > > in repository [default].
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Creating new logger 
> > > [org.apache.log4j.helpers.OptionConverter] in repository 
> > > [default]. log4j:INFO Returning existing logger 
> > > [org.apache.log4j.PropertyConfigurator] in repository [default]. 
> > > log4j:INFO Creating new logger [org.springframework] in repository

> > > [default]. log4j:INFO Returning existing logger
> > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > log4j:INFO Returning existing logger
> > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > log4j:INFO Returning existing logger
> > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > log4j:INFO Returning existing logger
> > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > log4j:INFO Returning existing logger
> > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > log4j:INFO Returning existing logger [org.apache.log4j] in
> repository
> > > [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.jdbc.datasource.SingleConnectionDataSource] 
> > > in repository [default]. log4j:INFO Creating new logger 
> > > [com.amex.ifst.fet.dao.SampleDao] in repository [default].
> > > log4j:INFO Creating new logger
> > > [org.springframework.jdbc.core.JdbcTemplate] in repository
> [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.jdbc.datasource.DataSourceUtils] in 
> > > repository [default]. log4j:INFO Creating new logger
> > >
> [org.springframework.transaction.support.TransactionSynchronizationMan
> ag
> > > er] in repository [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.jdbc.support.JdbcUtils] in repository
> [default].
> > > log4j:INFO Creating new logger
> > >
> [org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator] 
> in
> > > repository [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.jdbc.support.SQLStateSQLExceptionTranslator] 
> > > in repository [default]. log4j:INFO Creating new logger
> > > [org.springframework.jdbc.support.SQLErrorCodesFactory] in
> repository
> > > [default].
> > > log4j:INFO Creating new logger
> > >
> [org.springframework.beans.factory.support.DefaultListableBeanFactory]
> > > in repository [default].
> > > log4j:INFO Creating new logger
> > >
> [org.springframework.beans.factory.support.CglibSubclassingInstantiati
> on
> > > Strategy] in repository [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] in

> > > repository [default]. log4j:INFO Creating new logger
> > >
> [org.springframework.core.io.support.PathMatchingResourcePatternResolv
> er
> > > ] in repository [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.beans.factory.xml.ResourceEntityResolver] in 
> > > repository [default]. log4j:INFO Creating new logger
> > >
> [org.springframework.beans.factory.xml.DefaultXmlBeanDefinitionParser]
> > > in repository [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.core.CollectionFactory] in repository
> [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.beans.BeanWrapperImpl] in repository 
> > > [default]. log4j:INFO Creating new logger 
> > > [org.springframework.core.io.AbstractPathResolvingPropertyEditor] 
> > > in repository [default]. log4j:INFO Creating new logger
> > > [org.springframework.beans.CachedIntrospectionResults] in
repository
> > > [default].
> > > log4j:INFO Creating new logger
> > >
> [org.springframework.beans.factory.support.BeanDefinitionValueResolver
> ]
> > > in repository [default].
> > > log4j:INFO Creating new logger 
> > > [com.amex.ifst.fet.dao.OracleStoredFunction] in repository
> [default].
> > > log4j:INFO Returning existing logger 
> > > [com.amex.ifst.fet.dao.OracleStoredFunction] in repository
> [default].
> > > log4j:INFO Creating new logger 
> > > [org.springframework.jdbc.core.StatementCreatorUtils] in 
> > > repository [default].
> > >
> > > Rakesh Patel
> > > Project Architect
> > > IFST
> > > Tel: +44 (0)20 7153 4243
> > > Fax: +44 (0)20 7153 4153
> > > Mobile: +44 (0) 7921 582573
> > >
> > >
> > > American Express Investments and American Express Independent 
> > > Financial Advisers are marketing names for American Express 
> > > Financial Services Europe Limited, a separate corporation within 
> > > the
>
> > > American Express group of companies. American Express Financial 
> > > Services Europe Limited is authorised and regulated by, and is 
> > > entered into the register (No. 190853 www.fsa.gov.uk/register/
> > > <http://www.fsa.gov.uk/register/>) of, the Financial Services 
> > > Authority and a member of the London Stock Exchange. Registered in

> > > England No. 3614902. Registered address: 230 Blackfriars
> > Road,
> > > London SE1 8NW. Vat No. 740 4143 68.
> > >
> > > The information in this email and any attachments is confidential 
> > > and intended solely for the attention and use of the named 
> > > addressee(s). It may be subject to legal, professional or other 
> > > privilege and further distribution of it is strictly prohibited 
> > > without our authority. If you are not the intended recipient, you 
> > > are not authorised to and must not
> > disclose,
> > > copy, distribute, or retain this message or any part of it, and 
> > > should notify us immediately.
> > >
> > >
> > > ------------------------------------------------------------------
> > > --
> > > -
> > > To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> > > For additional commands, e-mail:
log4j-user-help@logging.apache.org
> > >
> > >
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> For additional commands, e-mail: log4j-user-help@logging.apache.org
>
>
>
> American Express Investments and American Express Independent 
> Financial Advisers are marketing names for American Express Financial 
> Services Europe Limited, a separate corporation within the American 
> Express group of companies.  American Express Financial Services 
> Europe Limited is authorised and regulated by, and is entered into the

> register (No. 190853
> www.fsa.gov.uk/register/) of, the Financial Services Authority and a
member
> of the London Stock Exchange. Registered in England No. 3614902.
Registered
> address: 230 Blackfriars Road, London SE1 8NW. Vat No. 740 4143 68.
>
> The information in this email and any attachments is confidential and 
> intended solely for the attention and use of the named addressee(s). 
> It may be subject to legal, professional or other privilege and 
> further distribution of it is strictly prohibited without our 
> authority.  If you are not the intended recipient, you are not 
> authorised to and must not disclose, copy, distribute, or retain this 
> message or any part of it, and should notify us immediately.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> For additional commands, e-mail: log4j-user-help@logging.apache.org
>




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



American Express Investments and American Express Independent Financial Advisers are marketing names for American Express Financial Services Europe Limited, a separate corporation within the American Express group of companies.  American Express Financial Services Europe Limited is authorised and regulated by, and is entered into the register (No. 190853 www.fsa.gov.uk/register/) of, the Financial Services Authority and a member of the London Stock Exchange. Registered in England No. 3614902. Registered address: 230 Blackfriars Road, London SE1 8NW. Vat No. 740 4143 68. 

The information in this email and any attachments is confidential and intended solely for the attention and use of the named addressee(s). It may be subject to legal, professional or other privilege and further distribution of it is strictly prohibited without our authority.  If you are not the intended recipient, you are not authorised to and must not disclose, copy, distribute, or retain this message or any part of it, and should notify us immediately.


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


Re: Cannot turn off logging when using Junit - SOLVED

Posted by Mark Womack <mw...@apache.org>.
The libs are not included in the cvs due to various licensing issues. At
least at the time that was the issue I remember. We should revisit it as
part of the 1.3 push. I'm sure we can include the Apache jars and I would
like the build process to be as self-contained as possible. You could always
override with a version of the jars you preferred, but the repository would
contain the versions the official builds are built with.

But glad to hear you were able to work through the build locally.

-Mark

On 9/29/05, Rakesh Patel <Ra...@sharepeople.com> wrote:
>
> Hi,
>
> Ok I built from source using the latest in cvs. It wasn't as hard as I
> thought it would be (not sure why all 3rd party libs are not included
> though in cvs?).
>
> Turning the logging to OFF does what I need now!
>
> Thanks for the help,
>
> Rakesh
>
> -----Original Message-----
> From: Jacob Kjome [mailto:hoju@visi.com]
> Sent: 29 September 2005 15:12
> To: Log4J Users List
> Subject: RE: Cannot turn off logging when using JUnit
>
>
> Quoting Rakesh Patel <Ra...@sharepeople.com>:
>
> > I am indeed using the 1.3 alpha version.
> >
> > However, adding this line makes no difference:
> >
> > log4j.logger.org.apache.log4j=WARN
> >
> > Jake, your last paragraph contradicts itself. You say the internal
> > code cannot be overriden and then you say it can?
> >
>
> Sorry if I wasn't clear. When I said "Note that, besides this", I meant
> to exclude the rest of the comments from the previously described
> hardcoded behavior that is in the current alpha, but removed from the
> latest source.
>
> So, there is no contradiction. They were two completely separate trains
> of thought of two entirely different logging issues.
>
> > Any idea when the next release will fix this (no time to build from
> > source)?
> >
>
> I believe that some of the developers are working on getting a new
> release out as we speak!
>
> Jake
>
> > Thanks
> >
> > Rakesh
> >
> > -----Original Message-----
> > From: Jacob Kjome [mailto:hoju@visi.com]
> > Sent: 28 September 2005 23:14
> > To: Log4J Users List; Mark Womack
> > Subject: Re: Cannot turn off logging when using JUnit
> >
> >
> > Quoting Mark Womack <mw...@apache.org>:
> >
> > > Can we assume that you are using the 1.3 alpha version? You will
> > > want to add configuration to set org.apache.log4j to WARN/ERROR or
> > > OFF.
> > >
> >
> > I think at some point, the auto-logging of logger creation internal to
>
> > Log4j-1.3 in CVS was removed. The current release alpha still has it
> > turned on no matter what.
> >
> > I suggest either waiting for the next alpha release or building
> > yourself from source. Note that, besides this, you control log4j
> > internal logging using normal log4j configuration, just like any other
>
> > logger. So, if you want to turn off log4j logging, then make sure to
> > set the level pretty high for the org.apache.log4j logger.
> >
> >
> > Jake
> >
> > > hth,
> > > -Mark
> > >
> > > On 9/28/05, Rakesh Patel <Ra...@sharepeople.com> wrote:
> > > >
> > > > Hi,
> > > >
> > > > I have a test set up that logs and also the class under test logs
> > > > too.
> > > >
> > > > I want to turn of logging at times but am finding that the console
>
> > > > ALWAYS logs INFO messages of the loggers being created (my user
> > > > defined log entries are not displayed).
> > > >
> > > > I've tried various settings in the property file but I just cannot
>
> > > > stop these entries going to the console.
> > > >
> > > > Here's my property file:
> > > >
> > > > log4j.rootLogger=OFF, stdout, R
> > > > log4j.appender.stdout=org.apache.log4j.ConsoleAppender
> > > > log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
> > > >
> > > > # Print the date in ISO 8601 format
> > > > log4j.appender.stdout.layout.ConversionPattern=%d [%t] %-5p %c -
> > > > %m%n
> > > >
> > > > #log4j.appender.R=org.apache.log4j.FileAppender
> > > > log4j.appender.R.File=app.log
> > > >
> > > > log4j.appender.R.layout=org.apache.log4j.PatternLayout
> > > > log4j.appender.R.layout.ConversionPattern=%d %-5p %c - %m%n
> > > >
> > > > # Vary level for packages log4j.logger.org.springframework=ERROR
> > > >
> > > > And here's the bit of my initialisation code in my Junit setUp:
> > > >
> > > > protected void setUp() throws Exception {
> > > >
> > > > PropertyConfigurator.configure("c:/Projects/FETServer/conf/log4j.p
> > > > ro
> > > > pert
> > > > ies");
> > > > // initialise datasource
> > > > _logger.info("One-time setUp()");
> > > > _logger.info("intializing connection...");
> > > > dataSource = new SingleConnectionDataSource();
> > > > dataSource.setDriverClassName(
> > > > "oracle.jdbc.driver.OracleDriver");
> > > > dataSource.setUrl(
> > > > "jdbc:oracle:thin:@132.25.50.69:1521:ORCL01");
> > > > dataSource.setUsername("scott");
> > > > dataSource.setPassword("tiger");
> > > >
> > > > dao = new SampleDao(dataSource);
> > > > }
> > > >
> > > > And here's whats going to the console:
> > > >
> > > > *** configurationOptionStr=null
> > > > ** End of LogManager static initializer
> > > > log4j:INFO Creating new logger
> > > > [com.amex.ifst.fet.dao.TestSampleDao]
> >
> > > > in repository [default]. log4j:INFO Creating new logger
> > > > [org.apache.log4j] in repository [default]. log4j:INFO Creating
> > > > new logger
> > [org.apache.log4j.PropertyConfigurator]
> > > > in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Creating new logger
> > [org.apache.log4j.config.PropertySetter]
> > > > in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.apache.log4j.helpers.OptionConverter] in repository
> > > > [default]. log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Creating new logger [org.springframework] in repository
>
> > > > [default]. log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger
> > > > [org.apache.log4j.PropertyConfigurator] in repository [default].
> > > > log4j:INFO Returning existing logger [org.apache.log4j] in
> > repository
> > > > [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.datasource.SingleConnectionDataSource]
> > > > in repository [default]. log4j:INFO Creating new logger
> > > > [com.amex.ifst.fet.dao.SampleDao] in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.core.JdbcTemplate] in repository
> > [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.datasource.DataSourceUtils] in
> > > > repository [default]. log4j:INFO Creating new logger
> > > >
> > [org.springframework.transaction.support.TransactionSynchronizationMan
> > ag
> > > > er] in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.support.JdbcUtils] in repository
> > [default].
> > > > log4j:INFO Creating new logger
> > > >
> > [org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator]
> > in
> > > > repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.support.SQLStateSQLExceptionTranslator]
> > > > in repository [default]. log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.support.SQLErrorCodesFactory] in
> > repository
> > > > [default].
> > > > log4j:INFO Creating new logger
> > > >
> > [org.springframework.beans.factory.support.DefaultListableBeanFactory]
> > > > in repository [default].
> > > > log4j:INFO Creating new logger
> > > >
> > [org.springframework.beans.factory.support.CglibSubclassingInstantiati
> > on
> > > > Strategy] in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] in
>
> > > > repository [default]. log4j:INFO Creating new logger
> > > >
> > [org.springframework.core.io.support.PathMatchingResourcePatternResolv
> > er
> > > > ] in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.beans.factory.xml.ResourceEntityResolver] in
> > > > repository [default]. log4j:INFO Creating new logger
> > > >
> > [org.springframework.beans.factory.xml.DefaultXmlBeanDefinitionParser]
> > > > in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.core.CollectionFactory] in repository
> > [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.beans.BeanWrapperImpl] in repository
> > > > [default]. log4j:INFO Creating new logger
> > > > [org.springframework.core.io.AbstractPathResolvingPropertyEditor]
> > > > in repository [default]. log4j:INFO Creating new logger
> > > > [org.springframework.beans.CachedIntrospectionResults] in
> repository
> > > > [default].
> > > > log4j:INFO Creating new logger
> > > >
> > [org.springframework.beans.factory.support.BeanDefinitionValueResolver
> > ]
> > > > in repository [default].
> > > > log4j:INFO Creating new logger
> > > > [com.amex.ifst.fet.dao.OracleStoredFunction] in repository
> > [default].
> > > > log4j:INFO Returning existing logger
> > > > [com.amex.ifst.fet.dao.OracleStoredFunction] in repository
> > [default].
> > > > log4j:INFO Creating new logger
> > > > [org.springframework.jdbc.core.StatementCreatorUtils] in
> > > > repository [default].
> > > >
> > > > Rakesh Patel
> > > > Project Architect
> > > > IFST
> > > > Tel: +44 (0)20 7153 4243
> > > > Fax: +44 (0)20 7153 4153
> > > > Mobile: +44 (0) 7921 582573
> > > >
> > > >
> > > > American Express Investments and American Express Independent
> > > > Financial Advisers are marketing names for American Express
> > > > Financial Services Europe Limited, a separate corporation within
> > > > the
> >
> > > > American Express group of companies. American Express Financial
> > > > Services Europe Limited is authorised and regulated by, and is
> > > > entered into the register (No. 190853 www.fsa.gov.uk/register/<http://www.fsa.gov.uk/register/>
> > > > <http://www.fsa.gov.uk/register/>) of, the Financial Services
> > > > Authority and a member of the London Stock Exchange. Registered in
>
> > > > England No. 3614902. Registered address: 230 Blackfriars
> > > Road,
> > > > London SE1 8NW. Vat No. 740 4143 68.
> > > >
> > > > The information in this email and any attachments is confidential
> > > > and intended solely for the attention and use of the named
> > > > addressee(s). It may be subject to legal, professional or other
> > > > privilege and further distribution of it is strictly prohibited
> > > > without our authority. If you are not the intended recipient, you
> > > > are not authorised to and must not
> > > disclose,
> > > > copy, distribute, or retain this message or any part of it, and
> > > > should notify us immediately.
> > > >
> > > >
> > > > ------------------------------------------------------------------
> > > > --
> > > > -
> > > > To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> > > > For additional commands, e-mail:
> log4j-user-help@logging.apache.org
> > > >
> > > >
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> > For additional commands, e-mail: log4j-user-help@logging.apache.org
> >
> >
> >
> > American Express Investments and American Express Independent
> > Financial Advisers are marketing names for American Express Financial
> > Services Europe Limited, a separate corporation within the American
> > Express group of companies. American Express Financial Services
> > Europe Limited is authorised and regulated by, and is entered into the
>
> > register (No. 190853
> > www.fsa.gov.uk/register/) <http://www.fsa.gov.uk/register/)> of, the
> Financial Services Authority and a
> member
> > of the London Stock Exchange. Registered in England No. 3614902.
> Registered
> > address: 230 Blackfriars Road, London SE1 8NW. Vat No. 740 4143 68.
> >
> > The information in this email and any attachments is confidential and
> > intended solely for the attention and use of the named addressee(s).
> > It may be subject to legal, professional or other privilege and
> > further distribution of it is strictly prohibited without our
> > authority. If you are not the intended recipient, you are not
> > authorised to and must not disclose, copy, distribute, or retain this
> > message or any part of it, and should notify us immediately.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> > For additional commands, e-mail: log4j-user-help@logging.apache.org
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> For additional commands, e-mail: log4j-user-help@logging.apache.org
>
>
>
> American Express Investments and American Express Independent Financial
> Advisers are marketing names for American Express Financial Services Europe
> Limited, a separate corporation within the American Express group of
> companies. American Express Financial Services Europe Limited is authorised
> and regulated by, and is entered into the register (No. 190853
> www.fsa.gov.uk/register/ <http://www.fsa.gov.uk/register/>) of, the
> Financial Services Authority and a member of the London Stock Exchange.
> Registered in England No. 3614902. Registered address: 230 Blackfriars Road,
> London SE1 8NW. Vat No. 740 4143 68.
>
> The information in this email and any attachments is confidential and
> intended solely for the attention and use of the named addressee(s). It may
> be subject to legal, professional or other privilege and further
> distribution of it is strictly prohibited without our authority. If you are
> not the intended recipient, you are not authorised to and must not disclose,
> copy, distribute, or retain this message or any part of it, and should
> notify us immediately.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: log4j-user-unsubscribe@logging.apache.org
> For additional commands, e-mail: log4j-user-help@logging.apache.org
>
>