Files
WebSCR/DataUploader/NLog.config
T
Samuele E. Locatelli 967e4959f8 Pulizia NLog inutili
2019-02-08 09:45:01 +01:00

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>