I would like to know which way of log exception in Spring.NET is prefered and why. I found two common scenario.

1.Use IThrowAdvice.

Created throws advice and in method AfterThrowing handle / log exception.

namespace Aspects
{
    public class ExLogThrowsAdvice : IThrowsAdvice
    {
        private ILog _logger;

        public ExLogThrowsAdvice()
        {
            _logger = LogManager.GetLogger("Error_file");
        }

        public void AfterThrowing(MethodInfo methodInfo,
            Object []args, Object target, Exception exception)
        {
            _logger.Error(exception);
        }
    }
}

and use Common.Loggin API (Common Loggin API) for configure for example log4net fo logging

 <sectionGroup name="common">
      <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging"/>
    </sectionGroup>

    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>

  <log4net>

    <appender name="ErrorFileAppender" 
              type="log4net.Appender.FileAppender">
      <file value="errors.txt"/>
      <filter type="log4net.Filter.LevelRangeFilter">
        <levelMin value="ERROR" />
        <levelMax value="FATAL" />
      </filter>
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date%newline%username%newline[%thread] %message %newline"/>
      </layout>
    </appender>

    <root>
      <level value="ERROR"/>
      <appender-ref ref="ErrorFileAppender"/>
    </root>


  </log4net>

And last create proxy for object in businees layer.

  <!--ex log advice-->
  <object id="theExLogAdvice" type="Aspects.ExLogThrowsAdvice, ExceptionLogging"/>


  <!--auto proxy creator-->
  <object type="Spring.Aop.Framework.AutoProxy.TypeNameAutoProxyCreator, Spring.Aop">
    <property name="TypeNames" value="Aspects*"/>
    <property name="InterceptorNames">
      <list>
        <value>theExLogAdvice</value>
      </list>
    </property>
  </object>

This is first concept second which I found is use aspect fo exception handling from Spring Aspect library.

2.Exception aspects from Spring.net

I would like create handler for log exception and this handler will use log4net logger.

Handler for exception:

    <object id="exLogHandler"
            type="Spring.Aspects.Exceptions.LogExceptionHandler, Spring.Aop">
      <property name="LogName" value="???"/>
      <property name="LogLevel" value="Error"/>
    </object>  

and then use this handler in exception handle advice:

  <property name="ExceptionHandlerDictionary">
    <dictionary>
      <entry key="log" ref="exLogHandler"/>
    </dictionary> 
  </property>

  <property name="ExceptionHandlers">
    <list>
      <value>on exception name SomeException log 'Ex:' + #e</value>
    </list>
  </property>

I am not sure if second way is good. Maybe it is stupidity.

It is possible configure LogExceptionHandler to use log4net logger?

link|improve this question
feedback

1 Answer

I'm not sure if it's the best, but a SimpleLoggingAdvice logs exceptions for you. Furthermore, you can configure a SimpleLoggingAdvice to log execution time, method arguments and return values. Configuration looks like this (from the docs):

<object name="loggingAdvice" type="Spring.Aspects.Logging.SimpleLoggingAdvice, Spring.Aop">
  <property name="LogUniqueIdentifier" value="true"/>               
  <property name="LogExecutionTime"    value="true"/>               
  <property name="LogMethodArguments"  value="true"/>
  <property name="LogReturnValue"      value="true"/>

  <property name="Separator"           value=";"/>
  <property name="LogLevel"            value="Info"/>


  <property name="HideProxyTypeNames"  value="true"/>
  <property name="UseDynamicLogger"    value="true"/>
</object>

Of course, you still have to configure a proxy factory and logging, but you know how to do that already.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown