mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
bf1ff29519
commited somewhere between vancouver and vegas @ 2135ft. Alt and 480mph.
64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Core.Instrumentation;
|
|
using SubSonic.Repository;
|
|
using Telerik.Web.Mvc;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class LogController : Controller
|
|
{
|
|
private readonly ILogProvider _logProvider;
|
|
|
|
public LogController(ILogProvider logProvider)
|
|
{
|
|
_logProvider = logProvider;
|
|
}
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
public ActionResult Clear()
|
|
{
|
|
_logProvider.DeleteAll();
|
|
return RedirectToAction("Index");
|
|
|
|
}
|
|
|
|
[GridAction]
|
|
public ActionResult _AjaxBinding()
|
|
{
|
|
return View(new GridModel(_logProvider.GetAllLogs()));
|
|
}
|
|
|
|
|
|
[GridAction]
|
|
public ActionResult _AjaxBinding2()
|
|
{
|
|
var l= _logProvider.GetAllLogs().Select(c => new {
|
|
c.DisplayLevel,
|
|
c.ExceptionMessage,
|
|
c.ExceptionString,
|
|
c.ExceptionType,
|
|
//c.Level,
|
|
c.Logger,
|
|
c.LogId,
|
|
c.Message,
|
|
c.Stack,
|
|
c.Time
|
|
});
|
|
|
|
return View(new GridModel(l));
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|