mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
add current time and props to logs
This commit is contained in:
@ -28,3 +28,15 @@
|
||||
<h2>Exception</h2>
|
||||
<pre style="max-height: 500px;">@Model.Exception.ToString()</pre>
|
||||
}
|
||||
|
||||
@if(Model.Properties != null && Model.Properties.Count > 0)
|
||||
{
|
||||
<h2>Properties</h2>
|
||||
<dl class="row">
|
||||
@foreach(var prop in Model.Properties)
|
||||
{
|
||||
<dt class="col-sm-4 col-lg-3">@prop.Key</dt>
|
||||
<dd class="col-sm-8 col-lg-9">@(prop.Value?.ToString() ?? "-")</dd>
|
||||
}
|
||||
</dl>
|
||||
}
|
||||
|
Reference in New Issue
Block a user