mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
30 lines
No EOL
562 B
C#
30 lines
No EOL
562 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public interface ILogService
|
|
{
|
|
void DeleteAll();
|
|
void Trim();
|
|
}
|
|
|
|
public class LogService : ILogService
|
|
{
|
|
private readonly ILogRepository _logRepository;
|
|
|
|
public LogService(ILogRepository logRepository)
|
|
{
|
|
_logRepository = logRepository;
|
|
}
|
|
|
|
public void DeleteAll()
|
|
{
|
|
_logRepository.Purge();
|
|
}
|
|
|
|
public void Trim()
|
|
{
|
|
_logRepository.Trim();
|
|
}
|
|
}
|
|
} |