You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
649 B
28 lines
649 B
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");
|
|
}
|
|
}
|
|
} |