0
|
1 <?xml version="1.0" encoding="utf-8" ?>
|
|
2 <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
|
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
4
|
|
5 <!--
|
|
6 See http://nlog-project.org/wiki/Configuration_file
|
|
7 for information on customizing logging rules and outputs.
|
|
8 -->
|
|
9 <targets>
|
|
10 <target xsi:type="File" name="textFile" fileName="${basedir}/logs/${shortdate}.log"
|
|
11 layout="${longdate} ${uppercase:${level}} ${message}" />
|
|
12 </targets>
|
|
13
|
|
14 <rules>
|
|
15 <logger name="*" minlevel="Trace" writeTo="textFile" />
|
|
16 </rules>
|
|
17 </nlog> |