Hi!

Great! The two loggers work fine =)

Another question:
I've also set up an Exception-Logger.
Here I'm working with BeanNameAutoProxyCreator.
Is the path set right?

Code:
  <bean id="exceptionLog" class="com.test.testapp.log.ExceptionLog" />
  <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
    <property name="beanNames">
        <value> com.test.testapp*</value>
    </property>
    <property name="interceptorNames">
        <list>
            <value>exceptionLog</value> 
        </list>
    </property>
   </bean>
No Exceptions are logged
Thanks so much!

manu