1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

include project property with logs

This commit is contained in:
Kyle Spearrin
2018-03-30 00:01:53 -04:00
parent 8edba6bb6c
commit e51cf078b0
3 changed files with 10 additions and 3 deletions

View File

@ -13,6 +13,7 @@
<tr>
<th style="width: 50px;">&nbsp;</th>
<th style="width: 200px;">Timestamp</th>
<th style="width: 100px;">Project</th>
<th style="width: 100px;">Level</th>
<th>Message</th>
</tr>
@ -21,7 +22,7 @@
@if(!Model.Items.Any())
{
<tr>
<td colspan="4">No results to list.</td>
<td colspan="5">No results to list.</td>
</tr>
}
else
@ -35,6 +36,7 @@
</a>
</td>
<td>@log.Timestamp.ToString()</td>
<td>@(string.IsNullOrWhiteSpace(log.Project) ? "-" : log.Project)</td>
<td>@log.Level</td>
<td>@log.MessageTruncated</td>
</tr>