Package cleanup

This commit is contained in:
kay.one 2012-02-10 16:48:20 -08:00
commit 5ecbdd3e64
105 changed files with 151 additions and 25190 deletions

View file

@ -1,32 +0,0 @@
using System.IO;
using System.Text;
using NLog;
namespace NzbDrone.Core.Instrumentation
{
public class NlogWriter : TextWriter
{
private static readonly Logger Logger = LogManager.GetLogger("NzbDrone.SubSonic");
public override Encoding Encoding
{
get { return Encoding.Default; }
}
public override void Write(char[] buffer, int index, int count)
{
Write(new string(buffer, index, count));
}
public override void Write(string value)
{
DbAction(value);
}
private static void DbAction(string value)
{
Logger.Trace(value.Replace("`t0`.", ""));
}
}
}