mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
17 lines
796 B
XML
17 lines
796 B
XML
<?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> |