Skip to content

Instantly share code, notes, and snippets.

@PaulStovell
Created July 10, 2012 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulStovell/3084386 to your computer and use it in GitHub Desktop.
Save PaulStovell/3084386 to your computer and use it in GitHub Desktop.
Octopus.Server.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>
<appSettings>
<add key="Logging.Level" value="Debug" />
<add key="Tasks.ExecutionThreads" value="4" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.5.2.830" newVersion="2.5.2.830" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.netfx35.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="console" xsi:type="Console" />
</targets>
<rules>
<logger name="Raven.*" writeTo="console"/>
</rules>
</nlog>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment