mirror of
https://github.com/bitwarden/server.git
synced 2025-05-06 04:02:15 -05:00
31 lines
781 B
Plaintext
31 lines
781 B
Plaintext
@model LogModel
|
|
@{
|
|
ViewData["Title"] = "Log: " + Model.Id;
|
|
}
|
|
|
|
<h1>Log <small>@Model.Id</small></h1>
|
|
|
|
<h2>Information</h2>
|
|
<dl class="row">
|
|
<dt class="col-sm-4 col-lg-3">Id</dt>
|
|
<dd class="col-sm-8 col-lg-9"><code>@Model.Id</code></dd>
|
|
|
|
<dt class="col-sm-4 col-lg-3">Event Id Hash</dt>
|
|
<dd class="col-sm-8 col-lg-9">@Model.EventIdHash</dd>
|
|
|
|
<dt class="col-sm-4 col-lg-3">Timestamp</dt>
|
|
<dd class="col-sm-8 col-lg-9">@Model.Timestamp.ToString()</dd>
|
|
|
|
<dt class="col-sm-4 col-lg-3">Level</dt>
|
|
<dd class="col-sm-8 col-lg-9">@Model.Level</dd>
|
|
</dl>
|
|
|
|
<h2>Message</h2>
|
|
<pre style="max-height: 500px;">@Model.Message</pre>
|
|
|
|
@if(Model.Exception != null)
|
|
{
|
|
<h2>Exception</h2>
|
|
<pre style="max-height: 500px;">@Model.Exception.ToString()</pre>
|
|
}
|