-
Notifications
You must be signed in to change notification settings - Fork 14
/
App.config
32 lines (28 loc) · 1.1 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="exceptionless" type="Exceptionless.Configuration.ExceptionlessSection, Exceptionless" />
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
<!-- User defined options -->
<appSettings>
<add key="StartFrom" value="123" />
</appSettings>
<!-- Sign in on http://exceptionless.io to obtain API KEY -->
<exceptionless apiKey="API_KEY_HERE" />
<nlog>
<targets>
<target name="debugger" type="Debugger" layout="${logger}::${message}" />
<target name="console" type="Console" layout="${logger}::${message}" />
<target name="file" type="File" layout="${longdate} ${logger}::${message}" fileName="${basedir}/Logs/${shortdate}.log" />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="debugger" />
<logger name="*" minlevel="Trace" writeTo="console" />
<logger name="*" minlevel="Trace" writeTo="file" />
</rules>
</nlog>
</configuration>