mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
14 lines
No EOL
279 B
C#
14 lines
No EOL
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();
|
|
}
|
|
}
|
|
} |