Skip to content

Instantly share code, notes, and snippets.

@andreasohlund
Created June 1, 2011 08:34
Show Gist options
  • Select an option

  • Save andreasohlund/1001986 to your computer and use it in GitHub Desktop.

Select an option

Save andreasohlund/1001986 to your computer and use it in GitHub Desktop.
Exercise 2
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="Logging" type="NServiceBus.Config.Logging, NServiceBus.Core" />
</configSections>
<Logging Threshold="DEBUG" />
</configuration>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"/>
</configSections>
<log4net debug="false">
<appender name="console" type="log4net.Appender.ConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d [%t] %-5p %c [%x] &lt;%X{auth}&gt; - %m%n"/>
</layout>
</appender>
<root>
<level value="DEBUG"/>
<appender-ref ref="console"/>
</root>
</log4net>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment