Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(694)

Side by Side Diff: Src/GoogleApis.Tests/app.config

Issue 183680043: Issue 501 - Improve the logging, provide TraceSource logger Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: Created 9 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Src/GoogleApis.Tests/Apis/Requests/ClientServiceRequestTest.cs ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <configuration> 2 <configuration>
3 <configSections> 3 <configSections>
4 <section name="log4net" type="log4net.Config.Log4NetConfigurationSection Handler, log4net" /> 4 <section name="log4net" type="log4net.Config.Log4NetConfigurationSection Handler, log4net" />
5 </configSections> 5 </configSections>
6 <system.diagnostics>
7 <trace autoflush="true" />
8 <sources>
9 <source name="Google.Apis" switchName="sourceSwitch" switchType="Sys tem.Diagnostics.SourceSwitch">
10 <listeners>
11 <add name="console" type="System.Diagnostics.ConsoleTraceLis tener">
12 <filter type="System.Diagnostics.EventTypeFilter" initia lizeData="Information" />
13 </add>
14 <remove name="Default" />
15 </listeners>
16 </source>
17 </sources>
18 <switches>
19 <add name="sourceSwitch" value="Verbose"/>
20 </switches>
21 </system.diagnostics>
6 <log4net debug="true"> 22 <log4net debug="true">
7 <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFi leAppender"> 23 <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFi leAppender">
8 <file value="Google.Apis.Tests.log" /> 24 <file value="Google.Apis.Tests.log" />
9 <appendToFile value="true" /> 25 <appendToFile value="true" />
10 <rollingStyle value="Size" /> 26 <rollingStyle value="Size" />
11 <maxSizeRollBackups value="10" /> 27 <maxSizeRollBackups value="10" />
12 <maximumFileSize value="10MB" /> 28 <maximumFileSize value="10MB" />
13 <staticLogFileName value="true" /> 29 <staticLogFileName value="true" />
14 <layout type="log4net.Layout.PatternLayout"> 30 <layout type="log4net.Layout.PatternLayout">
15 <conversionPattern value="%d [%thread] %-5level %logger %ndc - %mess age%newline" /> 31 <conversionPattern value="%d [%thread] %-5level %logger %ndc - %mess age%newline" />
(...skipping 18 matching lines...) Expand all
34 <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3 a" culture="neutral" /> 50 <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3 a" culture="neutral" />
35 <bindingRedirect oldVersion="0.0.0.0-2.2.28.0" newVersion="2.2.28.0" /> 51 <bindingRedirect oldVersion="0.0.0.0-2.2.28.0" newVersion="2.2.28.0" />
36 </dependentAssembly> 52 </dependentAssembly>
37 <dependentAssembly> 53 <dependentAssembly>
38 <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" cul ture="neutral" /> 54 <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" cul ture="neutral" />
39 <bindingRedirect oldVersion="0.0.0.0-2.6.9.0" newVersion="2.6.9.0" /> 55 <bindingRedirect oldVersion="0.0.0.0-2.6.9.0" newVersion="2.6.9.0" />
40 </dependentAssembly> 56 </dependentAssembly>
41 </assemblyBinding> 57 </assemblyBinding>
42 </runtime> 58 </runtime>
43 </configuration> 59 </configuration>
OLDNEW
« no previous file with comments | « Src/GoogleApis.Tests/Apis/Requests/ClientServiceRequestTest.cs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b