mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
log exception strings
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
@model LogModel
|
||||
@model LogDetailsModel
|
||||
@{
|
||||
ViewData["Title"] = "Log: " + Model.Id;
|
||||
}
|
||||
@ -26,7 +26,7 @@
|
||||
@if(Model.Exception != null)
|
||||
{
|
||||
<h2>Exception</h2>
|
||||
<pre style="max-height: 500px;">@Model.Exception.ToString()</pre>
|
||||
<pre style="max-height: 500px;">@Model.ExceptionToString(Model.Exception)</pre>
|
||||
}
|
||||
|
||||
@if(Model.Properties != null && Model.Properties.Count > 0)
|
||||
|
Reference in New Issue
Block a user