Skip to content

Commit

Permalink
#685: Logging out should log at DEBUG level to not make noise.
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Oct 29, 2013
1 parent 3346b02 commit 61141e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hawtio-web/src/main/java/io/hawt/web/LogoutServlet.java
Expand Up @@ -12,7 +12,7 @@
import java.io.IOException;

/**
* @author Stan Lewis
*
*/
public class LogoutServlet extends HttpServlet {

Expand All @@ -28,7 +28,7 @@ protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws S

String username = (String) session.getAttribute("user");

LOG.info("Logging out user: {}", username);
LOG.debug("Logging out user: {}", username);
session.invalidate();
}

Expand Down

0 comments on commit 61141e5

Please sign in to comment.