mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Logs view improvements
This commit is contained in:
@@ -33,6 +33,11 @@ namespace NzbDrone.Core.Instrumentation
|
|||||||
|
|
||||||
log.Logger = logEvent.LoggerName;
|
log.Logger = logEvent.LoggerName;
|
||||||
|
|
||||||
|
if (log.Logger.StartsWith("NzbDrone."))
|
||||||
|
{
|
||||||
|
log.Logger = log.Logger.Remove(0, 9);
|
||||||
|
}
|
||||||
|
|
||||||
if (logEvent.Exception != null)
|
if (logEvent.Exception != null)
|
||||||
{
|
{
|
||||||
if (String.IsNullOrWhiteSpace(log.Message))
|
if (String.IsNullOrWhiteSpace(log.Message))
|
||||||
|
@@ -31,12 +31,13 @@ Logs
|
|||||||
.TableHtmlAttributes(new { @class = "Grid" })
|
.TableHtmlAttributes(new { @class = "Grid" })
|
||||||
.Columns(columns =>
|
.Columns(columns =>
|
||||||
{
|
{
|
||||||
columns.Bound(c => c.Time).Title("Time").Width(190);
|
columns.Bound(c => c.Time).Title("Time").Width(0);
|
||||||
columns.Bound(c => c.Level).Title("Level").Width(0);
|
columns.Bound(c => c.Level).Title("Level").Width(0);
|
||||||
|
columns.Bound(c => c.Logger).Title("Source").Width(0);
|
||||||
columns.Bound(c => c.Message);
|
columns.Bound(c => c.Message);
|
||||||
})
|
})
|
||||||
.DetailView(detailView => detailView.ClientTemplate(
|
.DetailView(detailView => detailView.ClientTemplate(
|
||||||
"<div>Logger: <#= Logger #></div>" +
|
"<div>Method: <#= Method #></div>" +
|
||||||
"<div><#= ExceptionType #></div>" +
|
"<div><#= ExceptionType #></div>" +
|
||||||
"<div class='stackframe'><#= Exception #></div>"
|
"<div class='stackframe'><#= Exception #></div>"
|
||||||
)).DataBinding(data => data.Ajax().Select("_AjaxBinding", "Log"))
|
)).DataBinding(data => data.Ajax().Select("_AjaxBinding", "Log"))
|
||||||
|
Reference in New Issue
Block a user