mirror of
https://github.com/bitwarden/server.git
synced 2025-07-09 20:03:47 -05:00
admin logs
This commit is contained in:
30
src/Admin/Views/Logs/View.cshtml
Normal file
30
src/Admin/Views/Logs/View.cshtml
Normal file
@ -0,0 +1,30 @@
|
||||
@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>
|
||||
}
|
Reference in New Issue
Block a user