Initial commit

This commit is contained in:
Andreas Bielawski
2020-01-30 20:57:41 +01:00
commit 90a70b60c2
13 changed files with 822 additions and 0 deletions

12
NLog.config.example Normal file
View File

@@ -0,0 +1,12 @@
<?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>
<target name="logconsole" xsi:type="ColoredConsole" layout="${longdate} - ${logger} - ${level:uppercase=true} - ${message}" />
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="logconsole" />
</rules>
</nlog>