mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
27 lines
657 B
C#
27 lines
657 B
C#
|
using System;
|
||
|
using System.IO;
|
||
|
using System.Text;
|
||
|
using NLog;
|
||
|
using NLog.Config;
|
||
|
using NLog.LayoutRenderers;
|
||
|
|
||
|
namespace NzbDrone.Common.Instrumentation
|
||
|
{
|
||
|
[ThreadAgnostic]
|
||
|
[LayoutRenderer("updateLog")]
|
||
|
public class UpdateLogLayoutRenderer : LayoutRenderer
|
||
|
{
|
||
|
private readonly string _appData;
|
||
|
|
||
|
public UpdateLogLayoutRenderer()
|
||
|
{
|
||
|
_appData = Path.Combine(new EnvironmentProvider().GetUpdateLogFolder(), DateTime.Now.ToString("yy.MM.d-HH.mm"));
|
||
|
|
||
|
}
|
||
|
|
||
|
protected override void Append(StringBuilder builder, LogEventInfo logEvent)
|
||
|
{
|
||
|
builder.Append(_appData);
|
||
|
}
|
||
|
}
|
||
|
}
|