Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
725 B

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
internalLogFile="c:\nlog-internal.txt" internalLogLevel="Trace">
<extensions>
<add assembly="NLogViewer"/>
</extensions>
<targets async="true">
<target
xsi:type="CacheTarget"
name="cache"/>
<target name="file" xsi:type="File"
layout="${longdate} ${logger} ${message}${exception:format=ToString}"
fileName="${basedir}/logs/logfile.txt"
keepFileOpen="true"
encoding="utf-8" />
</targets>
<rules>
<logger name="*" writeTo="cache" minlevel="Debug"/>
<logger name="*" minlevel="Trace" writeTo="file" />
</rules>
</nlog>