You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
834 B
40 lines
834 B
using System.IO;
|
|
using System.Text;
|
|
using NLog;
|
|
using NzbDrone.Common.Instrumentation;
|
|
|
|
namespace NzbDrone.Host.Owin
|
|
{
|
|
public class NlogTextWriter : TextWriter
|
|
{
|
|
private readonly Logger _logger = NzbDroneLogger.GetLogger();
|
|
|
|
|
|
public override Encoding Encoding
|
|
{
|
|
get
|
|
{
|
|
return Encoding.Default;
|
|
}
|
|
}
|
|
|
|
public override void Write(char[] buffer, int index, int count)
|
|
{
|
|
Write(buffer);
|
|
}
|
|
public override void Write(char[] buffer)
|
|
{
|
|
Write(new string(buffer));
|
|
}
|
|
|
|
public override void Write(string value)
|
|
{
|
|
_logger.Trace(value);
|
|
}
|
|
|
|
public override void Write(char value)
|
|
{
|
|
_logger.Trace(value);
|
|
}
|
|
}
|
|
} |