mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
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();
|
||
|
}
|
||
|
}
|
||
|
}
|