1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Instrumentation/LogRepository.cs

25 lines
611 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()
{
2013-06-19 03:01:08 +02:00
var trimDate = DateTime.UtcNow.AddDays(-15).Date;
Delete(c => c.Time <= trimDate);
2013-02-23 20:38:25 +01:00
}
}
}