1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Instrumentation/LogService.cs

31 lines
769 B
C#
Raw Normal View History

2013-06-19 03:01:08 +02:00
using NzbDrone.Common.Messaging;
2013-06-05 02:49:53 +02:00
using NzbDrone.Core.Datastore;
2013-06-19 03:01:08 +02:00
using NzbDrone.Core.Instrumentation.Commands;
2013-02-23 20:38:25 +01:00
namespace NzbDrone.Core.Instrumentation
{
public interface ILogService
{
2013-06-05 02:49:53 +02:00
PagingSpec<Log> Paged(PagingSpec<Log> pagingSpec);
2013-02-23 20:38:25 +01:00
}
2013-06-19 03:01:08 +02:00
public class LogService : ILogService, IExecute<TrimLogCommand>
2013-02-23 20:38:25 +01:00
{
private readonly ILogRepository _logRepository;
2013-03-05 20:58:53 +01:00
public LogService(ILogRepository logRepository)
2013-02-23 20:38:25 +01:00
{
_logRepository = logRepository;
}
2013-06-19 03:01:08 +02:00
public PagingSpec<Log> Paged(PagingSpec<Log> pagingSpec)
2013-02-23 20:38:25 +01:00
{
2013-06-19 03:01:08 +02:00
return _logRepository.GetPaged(pagingSpec);
2013-02-23 20:38:25 +01:00
}
2013-06-19 03:01:08 +02:00
public void Execute(TrimLogCommand message)
2013-02-23 20:38:25 +01:00
{
_logRepository.Trim();
}
}
}