mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +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();
|
|
}
|
|
}
|
|
} |