cemu-DS4Windows/DS4Windows/NLog.config

17 lines
796 B
Plaintext
Raw Normal View History

2019-12-18 22:33:23 +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">
<targets async="true">
<!-- Will override fileName and archive name in bootstrap code.
fileName attribute needed here by NLog -->
<target name="logfile" xsi:type="File" fileName="ds4windows_log.txt" layout="${longdate}|${level:uppercase=true}|${message}"
maxArchiveFiles="7" archiveNumbering="DateAndSequence" archiveDateFormat="yyyyMMdd" archiveOldFileOnStartup="True" />
<!--<target name="logconsole" xsi:type="Console" />-->
</targets>
<rules>
<!--<logger name="*" minlevel="Info" writeTo="logconsole" />-->
<logger name="*" minlevel="Info" writeTo="logfile" />
</rules>
</nlog>