niemyjski on new-stack-count
Refactored how additional event… (compare)
niemyjski on v3.0.12
niemyjski on master
Fixed a bug where the event ove… (compare)
niemyjski on new-stack-count
Added ability to generate many … (compare)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>
<extensions>
<add assembly="Exceptionless.NLog"/>
</extensions>
<nlog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<!-- Daily log files, deleted after 7 days -->
<target name="Search.Web"
xsi:type="File"
fileName="D:\ErrorLogs\Search\errors.web.log"
archiveFileName="D:\ErrorLogs\Search\errors.web.{#}.log"
archiveEvery="Day"
archiveNumbering="Rolling"
maxArchiveFiles="7" />
<target name="exceptionless" xsi:type="Exceptionless">
<field name="host" layout="${machinename}" />
<field name="identity" layout="${identity}" />
<field name="windows-identity" layout="${windows-identity:userName=True:domain=False}" />
<field name="process" layout="${processname}" />
</target>
</targets>
<rules>
<logger name="ErrorLog" minlevel="Debug" writeTo="Search.Web" />
<logger name="*" minlevel="Info" writeTo="exceptionless" />
</rules>
</nlog>
</configuration>