22 lines
901 B
XML
22 lines
901 B
XML
<?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"
|
|
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
|
autoReload="true"
|
|
throwExceptions="true"
|
|
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
|
|
|
<targets>
|
|
<target xsi:type="File" name="file" fileName="${basedir}/logs/${shortdate}.log"
|
|
layout="[${time}] ${level} ${logger} ${exception:format=message,stacktrace} ${newline} ${message}"
|
|
archiveFileName="${basedir}/logs/${shortdate}.{#####}.txt"
|
|
archiveAboveSize="10485760"
|
|
archiveNumbering="Rolling"
|
|
concurrentWrites="true"
|
|
maxArchiveFiles="5"
|
|
keepFileOpen="false" />
|
|
</targets>
|
|
<rules>
|
|
<logger name="*" minlevel="Info" writeTo="file" />
|
|
</rules>
|
|
</nlog> |