mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
19 lines
438 B
C#
19 lines
438 B
C#
|
using System.IO;
|
|||
|
using System.Text;
|
|||
|
using NLog;
|
|||
|
using NLog.Config;
|
|||
|
using NLog.LayoutRenderers;
|
|||
|
|
|||
|
namespace NzbDrone.Common.Instrumentation
|
|||
|
{
|
|||
|
[ThreadAgnostic]
|
|||
|
[LayoutRenderer("dirSeparator")]
|
|||
|
public class DirSeparatorLayoutRenderer : LayoutRenderer
|
|||
|
{
|
|||
|
|
|||
|
protected override void Append(StringBuilder builder, LogEventInfo logEvent)
|
|||
|
{
|
|||
|
builder.Append(Path.DirectorySeparatorChar);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|