18 lines
634 B
XML
18 lines
634 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
||
<configuration>
|
||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
autoReload="true" internalLogLevel="Info">
|
||
|
||
<targets>
|
||
<target xsi:type="File" name="tofile" fileName="logs/log-${shortdate}.log" />
|
||
</targets>
|
||
<target name="console" xsi:type="Console" layout="Access Log|${level:uppercase=true}|${logger}|${message}">
|
||
<highlight-row condition="true" foregroundColor="red"/>
|
||
</target>
|
||
|
||
<rules>
|
||
<logger name="*" minlevel="Info" writeTo="tofile,console" />
|
||
</rules>
|
||
</nlog>
|
||
</configuration> |