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.
Readarr/NzbDrone.Core/Instrumentation/TrimLogsJob.cs

32 lines
694 B

using System;
using System.Linq;
using NzbDrone.Core.Jobs;
using NzbDrone.Core.Model.Notification;
namespace NzbDrone.Core.Instrumentation
{
public class TrimLogsJob : IJob
{
private readonly LogService _logService;
public TrimLogsJob(LogService logService)
{
_logService = logService;
}
public string Name
{
get { return "Trim Logs Job"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromDays(1); }
}
public virtual void Start(ProgressNotification notification, dynamic options)
{
_logService.Trim();
}
}
}