ultimate/Ultimate/nlog.config

15 lines
557 B
Text
Raw Normal View History

2023-11-09 02:34:12 +01:00
<?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"
autoReload="true"
internalLogLevel="Trace"
internalLogFile="\internal_logs\internallog.txt">
<targets>
<target name="logfile" xsi:type="File"
fileName="\logs\${shortdate}_logfile.txt"
layout="${longdate} ${level:uppercase=true} ${message}"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="logfile" />
</rules>
2023-06-12 10:26:01 +02:00
</nlog>