Created
June 1, 2011 08:34
-
-
Save andreasohlund/1001986 to your computer and use it in GitHub Desktop.
Exercise 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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] <%X{auth}> - %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