1 |
william |
4 |
<?xml version="1.0" encoding="utf-8" ?> |
2 |
|
|
<configuration> |
3 |
|
|
<configSections> |
4 |
|
|
</configSections> |
5 |
|
|
<connectionStrings> |
6 |
|
|
<add name="AnywhereTS.Properties.Settings.atsConnectionString" |
7 |
william |
25 |
connectionString="Data Source=.\SQLEXPRESS;Database='AnywhereTS';Integrated Security=SSPI;Connect Timeout=30;User Instance=False" |
8 |
william |
4 |
providerName="System.Data.SqlClient" /> |
9 |
|
|
</connectionStrings> |
10 |
william |
33 |
|
11 |
|
|
<configSections> |
12 |
|
|
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> |
13 |
|
|
</configSections> |
14 |
|
|
|
15 |
|
|
<log4net debug="false"> |
16 |
|
|
<appender name="ATSAdminLog" type="log4net.Appender.FileAppender,log4net" > |
17 |
|
|
<param name="File" value="c:\\hnguyen\\download\\error-log.txt" /> |
18 |
|
|
<param name="AppendToFile" value="true" /> |
19 |
|
|
<layout type="log4net.Layout.PatternLayout,log4net"> |
20 |
|
|
<param name="ConversionPattern" value="%d [%t] %-5p %c [%x] <%X{auth}> - %m%n" /> |
21 |
|
|
</layout> |
22 |
|
|
</appender> |
23 |
|
|
<root> |
24 |
|
|
<priority value="ALL" /> |
25 |
|
|
<appender-ref ref="ATSAdmin" /> |
26 |
|
|
</root> |
27 |
|
|
<category name="AnywhereTS.ATSAmdinLogger"> |
28 |
|
|
<priority value="ALL" /> |
29 |
|
|
</category> |
30 |
|
|
</log4net> |
31 |
william |
4 |
</configuration> |