mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
25 lines
611 B
C#
25 lines
611 B
C#
using System;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public interface ILogRepository : IBasicRepository<Log>
|
|
{
|
|
void Trim();
|
|
}
|
|
|
|
public class LogRepository : BasicRepository<Log>, ILogRepository
|
|
{
|
|
public LogRepository(IDatabase database, IMessageAggregator messageAggregator)
|
|
: base(database, messageAggregator)
|
|
{
|
|
}
|
|
|
|
public void Trim()
|
|
{
|
|
var trimDate = DateTime.UtcNow.AddDays(-15).Date;
|
|
Delete(c => c.Time <= trimDate);
|
|
}
|
|
}
|
|
} |