|
|
|
@ -1,18 +1,26 @@
|
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Housekeeping.Housekeepers
|
|
|
|
|
{
|
|
|
|
|
public class TrimLogDatabase : IHousekeepingTask
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogRepository _logRepo;
|
|
|
|
|
private readonly IConfigFileProvider _configFileProvider;
|
|
|
|
|
|
|
|
|
|
public TrimLogDatabase(ILogRepository logRepo)
|
|
|
|
|
public TrimLogDatabase(ILogRepository logRepo, IConfigFileProvider configFileProvider)
|
|
|
|
|
{
|
|
|
|
|
_logRepo = logRepo;
|
|
|
|
|
_configFileProvider = configFileProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Clean()
|
|
|
|
|
{
|
|
|
|
|
if (!_configFileProvider.LogDbEnabled)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logRepo.Trim();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|