forked from efpiva/dover
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDover.config
More file actions
25 lines (20 loc) · 706 Bytes
/
Dover.config
File metadata and controls
25 lines (20 loc) · 706 Bytes
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
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<log4net>
<appender name="RollingFile" type="log4net.Appender.RollingFileAppender">
<file value="dover.log" />
<appendToFile value="true" />
<maximumFileSize value="10000KB" />
<maxSizeRollBackups value="2" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date %level %type - %message%newline%exception" />
</layout>
</appender>
<appender name="UIAPI" type="Dover.Framework.Log.SAPAppender"/>
<root>
<level value="INFO" />
<appender-ref ref="RollingFile" />
<appender-ref ref="UIAPI" />
</root>
</log4net>
</configuration>