Skip to content

Commit

Permalink
toned down info level logging of proxy servlet now it works on opensh…
Browse files Browse the repository at this point in the history
…ift (yay!)
  • Loading branch information
jstrachan committed Sep 9, 2013
1 parent 0d193cf commit f5596c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hawtio-web/src/main/java/io/hawt/web/ProxyDetails.java
Expand Up @@ -141,9 +141,8 @@ public ProxyDetails(String pathInfo) {
stringProxyURL += "?" + URIUtil.encodeQuery(httpServletRequest.getQueryString());
}
*/
LOG.info("Proxying to " + stringProxyURL + " as user: " + userName);
if (LOG.isDebugEnabled()) {
LOG.debug("Proxying to " + stringProxyURL);
LOG.debug("Proxying to " + stringProxyURL + " as user: " + userName);
}
} catch (Throwable t) {
throw new RuntimeException(t);
Expand Down

0 comments on commit f5596c7

Please sign in to comment.