Skip to content

Commit

Permalink
#331 change retry log from info to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kovax committed Mar 26, 2020
1 parent 299128c commit e414bab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void connect() {
log.info("Connected to proxy server on "+serverName+":"+serverPort);
manager.resubscribe(this);
} catch (Exception e) {
log.info("Could not connect to proxy server. Retrying in 5s");
log.debug("Could not connect to proxy server. Retrying in 5s");
try { Thread.sleep(5000); } catch (InterruptedException ex) { }
serverStream = null;
serverConnection = null;
Expand Down

0 comments on commit e414bab

Please sign in to comment.