Radarr/NzbDrone.Core/Instrumentation/TrimLogsJob.cs

32 lines
694 B
C#
Raw Normal View History

using System;
using System.Linq;
using NzbDrone.Core.Jobs;
using NzbDrone.Core.Model.Notification;
namespace NzbDrone.Core.Instrumentation
{
public class TrimLogsJob : IJob
{
2013-02-23 19:38:25 +00:00
private readonly LogService _logService;
2013-02-23 19:38:25 +00:00
public TrimLogsJob(LogService logService)
{
2013-02-23 19:38:25 +00:00
_logService = logService;
}
public string Name
{
get { return "Trim Logs Job"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromDays(1); }
}
2012-09-10 19:04:17 +00:00
public virtual void Start(ProgressNotification notification, dynamic options)
{
2013-02-23 19:38:25 +00:00
_logService.Trim();
}
}
}