aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorVincent Driessen2011-01-09 10:06:25 -0800
committerRob Hudson2011-01-09 10:06:25 -0800
commit1d90d8e19c8f7a06a8f3e61535f4f83c12cb58c6 (patch)
tree922aac320ec4ab1b06d0cbb931e0934d694c7752 /debug_toolbar/templates
parent6578f0b8ea3b26022bb5161a40a77c6b15de21ae (diff)
downloaddjango-debug-toolbar-1d90d8e19c8f7a06a8f3e61535f4f83c12cb58c6.tar.bz2
Added support for LogBook. Thanks to Vincent Driessen for the idea and
patch. Signed-off-by: Rob Hudson <rob@cogit8.org>
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/logger.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/logger.html b/debug_toolbar/templates/debug_toolbar/panels/logger.html
index 5e8b652..c41749e 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/logger.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/logger.html
@@ -5,6 +5,7 @@
<tr>
<th>{% trans "Level" %}</th>
<th>{% trans "Time" %}</th>
+ <th>{% trans "Channel" %}</th>
<th>{% trans "Message" %}</th>
<th>{% trans "Location" %}</th>
</tr>
@@ -14,6 +15,7 @@
<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">
<td>{{ record.level }}</td>
<td>{{ record.time|date:"h:i:s m/d/Y" }}</td>
+ <td>{{ record.channel|default:"-" }}</td>
<td>{{ record.message }}</td>
<td>{{ record.file }}:{{ record.line }}</td>
</tr>