Skip to content

Commit

Permalink
lower to debug logging the use of OpenShift capable sockets
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Sep 30, 2013
1 parent 09d5502 commit 16a7fcb
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -48,7 +48,9 @@ public static OpenShiftProtocolSocketFactory getSocketFactory() {

@Override
public Socket createSocket(String host, int port, InetAddress localAddress, int localPort) throws IOException, UnknownHostException {
LOG.info("Creating OpenShift socket on " + host + ":" + port);
if (LOG.isDebugEnabled()) {
LOG.debug("Creating OpenShift socket on " + host + ":" + port);
}
return new Socket(host, port);
}

Expand Down

0 comments on commit 16a7fcb

Please sign in to comment.