You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
421 B
20 lines
421 B
{ if $logs == [] } |
|
<p>Nothing was logged. If you were expecting logged items, ensure that LoggerConfig file has the correct threshold set.</p> |
|
{ else } |
|
<table> |
|
<thead> |
|
<tr> |
|
<th>Severity</th> |
|
<th>Message</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{logs} |
|
<tr> |
|
<td>{level}</td> |
|
<td>{msg}</td> |
|
</tr> |
|
{/logs} |
|
</tbody> |
|
</table> |
|
{ endif }
|
|
|