1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 02:18:06 +00:00
Lidarr/NzbDrone.Core/Instrumentation/LogRepository.cs

25 lines
611 B
C#
Raw Normal View History

2013-02-23 11:38:25 -08:00
using System;
2013-05-05 14:24:33 -07:00
using NzbDrone.Common.Messaging;
2013-02-23 11:38:25 -08: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 14:24:33 -07:00
public LogRepository(IDatabase database, IMessageAggregator messageAggregator)
: base(database, messageAggregator)
2013-02-23 11:38:25 -08:00
{
}
public void Trim()
{
2013-06-18 18:01:08 -07:00
var trimDate = DateTime.UtcNow.AddDays(-15).Date;
Delete(c => c.Time <= trimDate);
2013-02-23 11:38:25 -08:00
}
}
}