2012-01-14 18:47:23 -08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2013-02-17 23:59:43 -08:00
|
|
|
using NzbDrone.Core.Jobs;
|
2011-11-21 23:35:11 -08:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
|
2013-02-17 23:59:43 -08:00
|
|
|
namespace NzbDrone.Core.Instrumentation
|
2011-11-21 23:35:11 -08:00
|
|
|
{
|
|
|
|
public class TrimLogsJob : IJob
|
|
|
|
{
|
2013-02-23 11:38:25 -08:00
|
|
|
private readonly LogService _logService;
|
2011-11-21 23:35:11 -08:00
|
|
|
|
2013-02-23 11:38:25 -08:00
|
|
|
public TrimLogsJob(LogService logService)
|
2011-11-21 23:35:11 -08:00
|
|
|
{
|
2013-02-23 11:38:25 -08:00
|
|
|
_logService = logService;
|
2011-11-21 23:35:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "Trim Logs Job"; }
|
|
|
|
}
|
|
|
|
|
2012-01-14 18:47:23 -08:00
|
|
|
public TimeSpan DefaultInterval
|
2011-11-21 23:35:11 -08:00
|
|
|
{
|
2012-01-14 18:47:23 -08:00
|
|
|
get { return TimeSpan.FromDays(1); }
|
2011-11-21 23:35:11 -08:00
|
|
|
}
|
|
|
|
|
2012-09-10 12:04:17 -07:00
|
|
|
public virtual void Start(ProgressNotification notification, dynamic options)
|
2011-11-21 23:35:11 -08:00
|
|
|
{
|
2013-02-23 11:38:25 -08:00
|
|
|
_logService.Trim();
|
2011-11-21 23:35:11 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|