You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NLog.Config;
|
|
|
|
|
using NLog.LayoutRenderers;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Instrumentation
|
|
|
|
|
{
|
|
|
|
|
[ThreadAgnostic]
|
|
|
|
|
[LayoutRenderer("version")]
|
|
|
|
|
public class VersionLayoutRenderer : LayoutRenderer
|
|
|
|
|
{
|
|
|
|
|
private static readonly string version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
|
|
|
|
|
|
|
|
|
|
protected override void Append(StringBuilder builder, LogEventInfo logEvent)
|
|
|
|
|
{
|
|
|
|
|
builder.Append(version);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|