1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Instrumentation/LogProvider.cs

28 lines
649 B
C#
Raw Normal View History

2011-04-10 05:44:01 +03:00
using System.Linq;
using NLog;
using SubSonic.Repository;
namespace NzbDrone.Core.Instrumentation
{
public class LogProvider
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly IRepository _repository;
public LogProvider(IRepository repository)
{
_repository = repository;
}
public IQueryable<Log> GetAllLogs()
{
return _repository.All<Log>();
}
public void DeleteAll()
{
_repository.DeleteMany(GetAllLogs());
Logger.Info("Cleared Log History");
}
}
2011-04-10 05:44:01 +03:00
}