13 lines
473 B
XML
13 lines
473 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">
|
|
|
|
<targets>
|
|
<!-- file target -->
|
|
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log" layout="${longdate} [${uppercase:${level}}] ${message}" archiveEvery="Day" />
|
|
</targets>
|
|
|
|
<rules>
|
|
<!-- logging rules -->
|
|
<logger name="*" minlevel="Trace" writeTo="f" />
|
|
</rules>
|
|
</nlog> |