mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-01 05:15:36 +01:00
12 lines
373 B
Plaintext
12 lines
373 B
Plaintext
|
<?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="console" xsi:type="ColoredConsole" layout="${level:uppercase=true}: ${message}" />
|
||
|
</targets>
|
||
|
|
||
|
<rules>
|
||
|
<logger name="*" minlevel="Info" writeTo="console" />
|
||
|
</rules>
|
||
|
</nlog>
|