mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
31 lines
769 B
C#
31 lines
769 B
C#
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Instrumentation.Commands;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public interface ILogService
|
|
{
|
|
PagingSpec<Log> Paged(PagingSpec<Log> pagingSpec);
|
|
}
|
|
|
|
public class LogService : ILogService, IExecute<TrimLogCommand>
|
|
{
|
|
private readonly ILogRepository _logRepository;
|
|
|
|
public LogService(ILogRepository logRepository)
|
|
{
|
|
_logRepository = logRepository;
|
|
}
|
|
|
|
public PagingSpec<Log> Paged(PagingSpec<Log> pagingSpec)
|
|
{
|
|
return _logRepository.GetPaged(pagingSpec);
|
|
}
|
|
|
|
public void Execute(TrimLogCommand message)
|
|
{
|
|
_logRepository.Trim();
|
|
}
|
|
}
|
|
} |