9 lines
411 B
Text
9 lines
411 B
Text
|
|
<?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 xsi:type="Console" name="console" layout="${longdate}|${level:uppercase=true}|${logger}|${message} ${exception:format=toString}" />
|
||
|
|
</targets>
|
||
|
|
<rules>
|
||
|
|
<logger name="*" minlevel="Debug" writeTo="console" />
|
||
|
|
</rules>
|
||
|
|
</nlog>
|