-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathApp.config
22 lines (22 loc) · 919 Bytes
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"/>
</configSections>
<log4net>
<root>
<level value="INFO" />
<appender-ref ref="RollingFileTracer" />
</root>
<appender name="RollingFileTracer" type="log4net.Appender.RollingFileAppender,log4net">
<param name="File" value="Logs\\Log-"/>
<param name="DatePattern" value="yyyyMMdd".log""/>
<param name="StaticLogFileName" value="false" />
<param name="AppendToFile" value="true" />
<param name="RollingStyle" value="Composite" />
<param name="MaxSizeRollBackups" value="-1"/><param name="MaximumFileSize" value="1MB" />
<layout type="log4net.Layout.PatternLayout,log4net">
<param name="ConversionPattern" value="记录时间:%date 日志级别:%-5level - 描述:%message%newline" />
</layout>
</appender>
</log4net>
</configuration>