22 lines
739 B
XML
22 lines
739 B
XML
<?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"
|
|
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
|
autoReload="true"
|
|
throwExceptions="false"
|
|
internalLogLevel="Off" internalLogFile="D:\nlog-internal.log">
|
|
<variable name="myvar" value="myvalue"/>
|
|
|
|
<targets>
|
|
<target xsi:type="File" name="fPing" fileName="${basedir}/logs/${shortdate}_Ping.log"
|
|
layout="${uppercase:${level}} ${message} ${exception}"
|
|
maxArchiveFiles="30"
|
|
encoding="Unicode"
|
|
writeBom="true"/>
|
|
</targets>
|
|
|
|
<rules>
|
|
<logger name="PingLogger" minlevel="Trace" writeTo="fPing" />
|
|
</rules>
|
|
</nlog>
|