forked from pipprit/ffxivapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFFXIVAPP.Client.exe.nlog
22 lines (22 loc) · 1002 Bytes
/
FFXIVAPP.Client.exe.nlog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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">
<!--
This data will be output and viewable by a udp receiver such as log4view
Uncomment the rule below if you want files to be generated as well.
-->
<target xsi:type="NLogViewer" name="viewer"
includeSourceInfo="true" includeCallSite="true"
includeMdc="true" includeNdc ="true"
includeNLogData="true"
address="udp://127.0.0.1:9994" />
<!-- This data is all application errors that aren't covered by a message box -->
<target xsi:type="File" name="f" fileName="${basedir}/Logs/Errors/FFXIVAPP.Client.BugReport-${date:format=yyyy-MM-dd}.log"
layout="${longdate} ${message}" />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="viewer" />
<logger name="*" level="Error" writeTo="f" />
</rules>
</nlog>