Skip to content

Instantly share code, notes, and snippets.

@Chrisso
Created January 30, 2012 09:57
Show Gist options
  • Save Chrisso/1703644 to your computer and use it in GitHub Desktop.
Save Chrisso/1703644 to your computer and use it in GitHub Desktop.
Simple NLOG App.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>
<nlog>
<targets>
<target name="console" type="Console" layout="${message}" />
<target name="debugger" type="Debugger" layout="${message}"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="console,debugger" />
</rules>
</nlog>
</configuration>
@smo7sin
Copy link

smo7sin commented Nov 18, 2016

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment