Packages
ex_debug_toolbar
0.4.1
A debug web toolbar for Phoenix projects to display all sorts of information about request
Current section
Files
Jump to
Current section
Files
web/templates/toolbar/show/_logs.html.eex
<span class="toolbar-item" data-toggle="panel" data-title="Server Logs">
<i class="glyphicon glyphicon-book" aria-hidden="true"></i>
<%= length @logs %>
</span>
<div class="panel panel-default navbar-fixed-bottom">
<div class="panel-heading">
<h3 class="panel-title">Server Logs</h3>
</div>
<div class="panel-body">
<table class="table table-hover table-condensed">
<caption>Log entries for current request only</caption>
<thead>
<th> Time </th>
<th> Level </th>
<th> Message </th>
</thead>
<tbody>
<%= for entry <- @logs |> Enum.reverse do %>
<tr class="<%= log_color_class(entry) %>">
<td class="nowrap"><%= log_timestamp_to_string entry.timestamp %></td>
<td><%= entry.level %></td>
<td><%= entry.message |> to_string |> text_to_html %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>