Lidarr/src/NzbDrone.Core/Instrumentation/LogRepository.cs

27 lines
635 B
C#
Raw Normal View History

2013-02-23 19:38:25 +00:00
using System;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
2013-09-11 06:33:47 +00:00
2013-02-23 19:38:25 +00:00
namespace NzbDrone.Core.Instrumentation
{
public interface ILogRepository : IBasicRepository<Log>
{
void Trim();
}
public class LogRepository : BasicRepository<Log>, ILogRepository
{
public LogRepository(ILogDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
2013-02-23 19:38:25 +00:00
{
}
public void Trim()
{
var trimDate = DateTime.UtcNow.AddDays(-7).Date;
2013-06-19 01:01:08 +00:00
Delete(c => c.Time <= trimDate);
Vacuum();
2013-02-23 19:38:25 +00:00
}
}
}