Skip to content

Instantly share code, notes, and snippets.

@tiernano
Created January 28, 2013 14:33
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 tiernano/4655956 to your computer and use it in GitHub Desktop.
Save tiernano/4655956 to your computer and use it in GitHub Desktop.
config required for Loggly NLog Target: https://github.com/tiernano/LogglyNLoggerTarget/
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<extensions>
<add assembly="LogglyTarget"/>
</extensions>
<targets>
<target name="Loggly" xsi:type="Loggly" URL="<EnterYourLogglyURLHere>" bufferNumber="5" shouldBuffer="true"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="Loggly" />
</rules>
</nlog>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment