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.
35 lines
791 B
35 lines
791 B
using System.Diagnostics;
|
|
using System.IO;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Instrumentation;
|
|
using NzbDrone.Core.Model.Notification;
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
namespace NzbDrone.Core.Providers.Jobs
|
|
{
|
|
public class TrimLogsJob : IJob
|
|
{
|
|
private readonly LogProvider _logProvider;
|
|
|
|
public TrimLogsJob(LogProvider logProvider)
|
|
{
|
|
_logProvider = logProvider;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "Trim Logs Job"; }
|
|
}
|
|
|
|
public int DefaultInterval
|
|
{
|
|
get { return 1440; }
|
|
}
|
|
|
|
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
|
{
|
|
_logProvider.Trim();
|
|
}
|
|
}
|
|
} |