summarylogtreecommitdiffstats
path: root/NLog.config
diff options
context:
space:
mode:
authorGilrain2020-09-24 10:24:57 +0200
committerGilrain2020-09-24 10:24:57 +0200
commit1d1a581ddbffb3ae472cc79e75293e4ba91e74e3 (patch)
tree7e00a9883867aae5529fa114e00c996e8688f6a7 /NLog.config
parent3d4c3443900ea3de4256ca03192f11b505e48dde (diff)
downloadaur-1d1a581ddbffb3ae472cc79e75293e4ba91e74e3.tar.gz
update NLog.config with upstream changes
Diffstat (limited to 'NLog.config')
-rw-r--r--NLog.config10
1 files changed, 5 insertions, 5 deletions
diff --git a/NLog.config b/NLog.config
index 009ca8caa098..6d2341290f6b 100644
--- a/NLog.config
+++ b/NLog.config
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8" ?>
-<nlog xmlns="https://nlog-project.org/schemas/NLog.xsd" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
+<nlog xmlns="https://nlog-project.org/schemas/NLog.xsd" xsi:schemaLocation="NLog NLog.xsd" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
<targets>
- <target xsi:type="ColoredConsole" name="ColoredConsole" detectConsoleAvailable="false" layout="${level:uppercase=true}|${logger}|${message}${onexception:inner= ${exception:format=toString,Data}}" />
- <!-- Below becomes active when ASF is started with server parameter -->
- <!-- <target type="History" name="History" layout="${level:uppercase=true}|${logger}|${message}${onexception:inner= ${exception:format=toString,Data}}" maxCount="20" /> -->
+ <target xsi:type="ColoredConsole" name="ColoredConsole" layout="${level:uppercase=true}|${logger}|${message}${onexception:inner= ${exception:format=toString,Data}}" />
+ <!-- Below becomes active when ASF's IPC interface is started -->
+ <!-- <target type="History" name="History" layout="${date:format=yyyy-MM-dd HH\:mm\:ss}|${processname}-${processid}|${level:uppercase=true}|${logger}|${message}${onexception:inner= ${exception:format=toString,Data}}" maxCount="20" /> -->
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="ColoredConsole" />
- <!-- Below becomes active when ASF is started with server parameter -->
+ <!-- Below becomes active when ASF's IPC interface is started -->
<!-- <logger name="*" minlevel="Debug" writeTo="History" /> -->
</rules>
</nlog>