@model LogDetailsModel @{ ViewData["Title"] = "Log: " + Model.Id; }

Log @Model.Id

Information

Id
@Model.Id
Event Id Hash
@Model.EventIdHash
Timestamp
@Model.Timestamp.ToString()
Level
@Model.Level

Message

@Model.Message
@if(Model.Exception != null) {

Exception

@Model.ExceptionToString(Model.Exception)
} @if(Model.Properties != null && Model.Properties.Count > 0) {

Properties

@foreach(var prop in Model.Properties) {
@prop.Key
@(prop.Value?.ToString() ?? "-")
}
}