diff options
Diffstat (limited to 'views/logs.tpl')
-rw-r--r-- | views/logs.tpl | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/views/logs.tpl b/views/logs.tpl index ea8fe473f..b8ec92f0a 100644 --- a/views/logs.tpl +++ b/views/logs.tpl @@ -34,25 +34,27 @@ %line = log.split('|') <tr class='log' data-message="\\ %try: -{{line[2]}}\\ +{{line[3]}}\\ %except: \\ %end " data-exception="\\ %try: -{{line[3]}}\\ +{{line[4]}}\\ %except: \\ %end "> <td class="collapsing"><i class="\\ %try: -%if line[1] == 'INFO': +%if line[1] == 'INFO ': blue info circle icon \\ -%elif line[1] == 'WARNING': +%elif line[1] == 'WARNING ': yellow warning circle icon \\ -%elif line[1] == 'ERROR': +%elif line[1] == 'ERROR ': red bug icon \\ +%elif line[1] == 'DEBUG ': +bug icon \\ %end %except: %pass @@ -60,7 +62,7 @@ red bug icon \\ "></i></td> <td>\\ %try: -{{line[2]}}\\ +{{line[3]}}\\ %except: \\ %end |