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

25 lines
611 B
C#
Raw Normal View History

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