Skip to content

Commit

Permalink
Fixed log plugin to use test-info css style for info logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Dec 13, 2013
1 parent 8b906d0 commit 6791a69
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hawtio-web/src/main/webapp/app/core/js/coreHelpers.ts
Expand Up @@ -287,8 +287,11 @@ function logLevelClass(level:string) {
return "warning"
} else if (first === 'e' || first === "E") {
return "error";
} else if (first === 'd' || first === "d") {
} else if (first === 'i' || first === "I") {
return "info";
} else if (first === 'd' || first === "D") {
// we have no debug css style
return "";
}
}
return "";
Expand Down

0 comments on commit 6791a69

Please sign in to comment.