mirror of https://github.com/Sonarr/Sonarr
14 lines
279 B
C#
14 lines
279 B
C#
|
using System.IO;
|
|||
|
using Microsoft.Owin.Hosting.Tracing;
|
|||
|
|
|||
|
namespace NzbDrone.Host.Owin
|
|||
|
{
|
|||
|
public class OwinTraceOutputFactory : ITraceOutputFactory
|
|||
|
{
|
|||
|
|
|||
|
public TextWriter Create(string outputFile)
|
|||
|
{
|
|||
|
return new NlogTextWriter();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|