comparison Chronosv2/source/NLog.config @ 10:443821e55f06

Initial cleaned up add from Codeplex files
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 17:25:44 +0700
parents
children 741981715d94
comparison
equal deleted inserted replaced
9:904a9faadf8b 10:443821e55f06
1 <?xml version="1.0" encoding="utf-8" ?>
2 <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3 <targets>
4 <target name="async-file" type="AsyncWrapper">
5 <target name="file"
6 xsi:type="File"
7 fileName="${basedir}/logs/Log ${shortdate}.txt"
8 layout="${longdate} ${callsite} ${level}: ${message} ${exception:format=tostring} ${stacktrace}" />
9 </target>
10 </targets>
11 <rules>
12 <logger name="*" writeTo="async-file" />
13 <!--<logger name="*" writeTo="mail" minlevel="Error"/>-->
14 </rules>
15 </nlog>