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

30 lines
562 B
C#
Raw Normal View History

2013-02-23 20:38:25 +01:00
using System.Linq;
namespace NzbDrone.Core.Instrumentation
{
public interface ILogService
{
void DeleteAll();
void Trim();
}
public class LogService : ILogService
{
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;
}
public void DeleteAll()
{
_logRepository.Purge();
}
public void Trim()
{
_logRepository.Trim();
}
}
}