2013-02-23 19:38:25 +00: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 19:58:53 +00:00
|
|
|
|
public LogService(ILogRepository logRepository)
|
2013-02-23 19:38:25 +00:00
|
|
|
|
{
|
|
|
|
|
_logRepository = logRepository;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void DeleteAll()
|
|
|
|
|
{
|
|
|
|
|
_logRepository.Purge();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Trim()
|
|
|
|
|
{
|
|
|
|
|
_logRepository.Trim();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|