Skip to content

Commit

Permalink
Removing log4net from replication
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed Jun 28, 2011
1 parent b585f91 commit 685a6cb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
3 changes: 0 additions & 3 deletions Bundles/Raven.Bundles.Tests/Raven.Bundles.Tests.csproj
Expand Up @@ -31,9 +31,6 @@
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="log4net">
<HintPath>..\..\SharedLibs\log4net.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json"> <Reference Include="Newtonsoft.Json">
<HintPath>..\..\SharedLibs\Newtonsoft.Json.dll</HintPath> <HintPath>..\..\SharedLibs\Newtonsoft.Json.dll</HintPath>
</Reference> </Reference>
Expand Down
16 changes: 0 additions & 16 deletions Bundles/Raven.Bundles.Tests/Replication/ReplicationBase.cs
Expand Up @@ -10,10 +10,6 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.Composition.Hosting; using System.ComponentModel.Composition.Hosting;
using System.IO; using System.IO;
using log4net.Appender;
using log4net.Config;
using log4net.Filter;
using log4net.Layout;
using Raven.Abstractions.Replication; using Raven.Abstractions.Replication;
using Raven.Client; using Raven.Client;
using Raven.Client.Document; using Raven.Client.Document;
Expand All @@ -33,18 +29,6 @@ public ReplicationBase()
{ {
database::Raven.Database.Extensions.IOExtensions.DeleteDirectory("Data #" + i); database::Raven.Database.Extensions.IOExtensions.DeleteDirectory("Data #" + i);
} }

var outputDebugStringAppender = new OutputDebugStringAppender
{
Layout = new SimpleLayout(),
};
outputDebugStringAppender.AddFilter(new LoggerMatchFilter
{
AcceptOnMatch = true,
LoggerToMatch = "Raven.Bundles"
});
outputDebugStringAppender.AddFilter(new DenyAllFilter());
BasicConfigurator.Configure(outputDebugStringAppender);
} }


private const int PortRangeStart = 9101; private const int PortRangeStart = 9101;
Expand Down

0 comments on commit 685a6cb

Please sign in to comment.