-
-
Notifications
You must be signed in to change notification settings - Fork 370
Expand file tree
/
Copy pathnlog.config
More file actions
11 lines (11 loc) · 630 Bytes
/
nlog.config
File metadata and controls
11 lines (11 loc) · 630 Bytes
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" throwExceptions="false" internalLogToConsole="false" internalLogToConsoleError="false" internalLogLevel="Trace">
<targets>
<target name="logfile" xsi:type="File" fileName="${basedir}/logfile.txt" archiveNumbering="Sequence" archiveEvery="Day" maxArchiveFiles="28" encoding="UTF-8"/>
<target name="console" xsi:type="Console"/>
</targets>
<rules>
<logger name="*" minlevel="Warn" writeTo="logfile"/>
<logger name="*" minlevel="Warn" writeTo="console"/>
</rules>
</nlog>