diff --git a/views/system.tpl b/views/system.tpl
index 7f91e04d8..4ebd8327a 100644
--- a/views/system.tpl
+++ b/views/system.tpl
@@ -119,6 +119,7 @@
+
@@ -487,7 +488,7 @@
icon = 'red bug icon';
break;
case 'DEBUG':
- icon = 'bug icon';
+ icon = 'black bug icon';
}
return '';
}
@@ -522,11 +523,13 @@
$('.filter_log').removeClass('active');
$(this).addClass('active');
if ( $(this).data('level') === 'INFO') {
- table.column( 0 ).search( 'INFO|WARNING|ERROR', true, false).draw();
+ table.column( 0 ).search( 'INFO|WARNING|ERROR|DEBUG', true, false).draw();
} else if ( $(this).data('level') === 'WARNING') {
- table.column( 0 ).search( 'WARNING|ERROR', true, false ).draw();
+ table.column( 0 ).search( 'WARNING|ERROR|DEBUG', true, false ).draw();
} else if ( $(this).data('level') === 'ERROR') {
- table.column( 0 ).search( 'ERROR', true, false ).draw();
+ table.column( 0 ).search( 'ERROR|DEBUG', true, false ).draw();
+ } else if ( $(this).data('level') === 'DEBUG') {
+ table.column( 0 ).search( 'DEBUG', true, false ).draw();
} else if ( $(this).data('level') === 'ALL') {
table.column(0).search('').draw();
}