mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
fixed a bunch of things. added basic support for file scanning. logs are now avilable in the UI
This commit is contained in:
32
NzbDrone.Core/Instrumentation/LogProvider.cs
Normal file
32
NzbDrone.Core/Instrumentation/LogProvider.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using NLog;
|
||||
using SubSonic.Repository;
|
||||
|
||||
namespace NzbDrone.Core.Instrumentation
|
||||
{
|
||||
|
||||
public class LogProvider : ILogProvider
|
||||
{
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user