1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Core/Instrumentation/LogRepository.cs

25 lines
610 B
C#
Raw Normal View History

2013-02-23 20:38:25 +01:00
using System;
2013-05-05 23:24:33 +02:00
using NzbDrone.Common.Messaging;
2013-02-23 20:38:25 +01:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Instrumentation
{
public interface ILogRepository : IBasicRepository<Log>
{
void Trim();
}
public class LogRepository : BasicRepository<Log>, ILogRepository
{
2013-05-05 23:24:33 +02:00
public LogRepository(IDatabase database, IMessageAggregator messageAggregator)
: base(database, messageAggregator)
2013-02-23 20:38:25 +01:00
{
}
public void Trim()
{
var trimDate = DateTime.UtcNow.AddDays(-7).Date;
2013-06-19 03:01:08 +02:00
Delete(c => c.Time <= trimDate);
2013-02-23 20:38:25 +01:00
}
}
}