-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
nlog.config
22 lines (20 loc) · 978 Bytes
/
nlog.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8" ?>
<!-- XSD manual extracted from package NLog.Schema: https://www.nuget.org/packages/NLog.Schema-->
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xsi:schemaLocation="NLog NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
internalLogFile="logs/nlog-internal.log"
internalLogLevel="Info" >
<!-- the targets to write to -->
<targets>
<!-- write logs to file -->
<target xsi:type="File" name="file" fileName="logs/${date:format=yyyy-MM-dd}.log"
layout="${date}|${level:uppercase=true}|${logger:shortName=true}: ${message} ${exception}" />
<target xsi:type="Console" name="console"
layout="${date}|${level:uppercase=true}|${logger:shortName=true}: ${message} ${exception}" />
</targets>
<!-- rules to map from logger name to target -->
<rules>
<logger name="*" minlevel="Info" writeTo="file,console" />
</rules>
</nlog>