Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use debug log level to turn down the noise
  • Loading branch information
dejanb committed Oct 8, 2013
1 parent c4e7208 commit 0525305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/java/io/hawt/web/LoginServlet.java
Expand Up @@ -68,7 +68,7 @@ protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws S
for (Principal principal : principals) {
if (principal.getClass().getSimpleName().equals("UserPrincipal")) {
username = principal.getName();
LOG.info("Authorizing user " + username);
LOG.debug("Authorizing user " + username);
}
}
}
Expand Down

0 comments on commit 0525305

Please sign in to comment.