1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
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 20:38:25 +01:00
private readonly LogService _logService;
2013-02-23 20:38:25 +01:00
public TrimLogsJob(LogService logService)
{
2013-02-23 20:38:25 +01:00
_logService = logService;
}
public string Name
{
get { return "Trim Logs Job"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromDays(1); }
}
2012-09-10 21:04:17 +02:00
public virtual void Start(ProgressNotification notification, dynamic options)
{
2013-02-23 20:38:25 +01:00
_logService.Trim();
}
}
}