PTMagic/Monitor/Pages/Error.cshtml.cs

23 lines
608 B
C#
Raw Normal View History

2018-05-22 10:11:50 +02:00
using System.Diagnostics;
using Microsoft.AspNetCore.Diagnostics;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Monitor.Pages
{
public class ErrorModel : PageModel
{
2018-05-22 10:11:50 +02:00
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
public void OnGet()
{
2019-11-13 00:17:02 +01:00
var exceptionFeature = HttpContext.Features.Get<IExceptionHandlerPathFeature>();
2018-05-22 10:11:50 +02:00
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
2019-11-13 00:17:02 +01:00
Logger.WriteException(exceptionFeature.Error, "An error occurred whilst requesting " + exceptionFeature.Path);
2018-05-22 10:11:50 +02:00
}
}
}