mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
32 lines
683 B
C#
32 lines
683 B
C#
using System.IO;
|
|
using System.Text;
|
|
using NLog;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public class NlogWriter : TextWriter
|
|
{
|
|
private static readonly Logger Logger = LogManager.GetLogger("DB");
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
public override Encoding Encoding
|
|
{
|
|
get { return Encoding.Default; }
|
|
}
|
|
}
|
|
} |