forked from stackify/stackify-api-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNLog.config
More file actions
20 lines (18 loc) · 659 Bytes
/
Copy pathNLog.config
File metadata and controls
20 lines (18 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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"
>
<extensions>
<add assembly="NLog.Targets.Stackify"/>
</extensions>
<targets>
<target name="stackify" xsi:type="StackifyTarget" />
<target name="logfile" xsi:type="File" fileName="nlogfile.txt" />
<target name="console" xsi:type="Console" />
</targets>
<rules>
<logger name="*" writeTo="stackify" minlevel="Debug" />
<logger name="*" minlevel="Debug" writeTo="logfile" />
<logger name="*" minlevel="Info" writeTo="console" />
</rules>
</nlog>