2010-10-24 09:46:58 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NLog;
|
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
|
|
|
{
|
|
|
|
|
|
2011-04-10 02:14:51 +02:00
|
|
|
|
public class LogProvider
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|