comparison Stocks/Stocks.Service/NLog.config @ 0:e5d46bb6cdb0

Initial commit
author adminSH stevenhollidge@hotmail.com
date Mon, 20 Feb 2012 13:52:35 +0700
parents
children 399398841fd0
comparison
equal deleted inserted replaced
-1:000000000000 0:e5d46bb6cdb0
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>