@@ -386,13 +386,13 @@ private void openChannel(ClientMessageChannel channel) throws InterruptedExcepti
386
386
DSO_LOGGER .debug ("Channel open" );
387
387
break ;
388
388
} catch (final TCTimeoutException tcte ) {
389
- DSO_LOGGER .info ("Unable to connect to server/s {} ...sleeping for 5 sec." , serverAddresses );
389
+ DSO_LOGGER .debug ("Unable to connect to server/s {} ...sleeping for 1 sec." , serverAddresses );
390
390
DSO_LOGGER .debug ("Timeout connecting to server/s: {} {}" , serverAddresses , tcte .getMessage ());
391
391
synchronized (clientStopped ) {
392
392
clientStopped .wait (1000 );
393
393
}
394
394
} catch (final ConnectException e ) {
395
- DSO_LOGGER .info ("Unable to connect to server/s {} ...sleeping for 5 sec." , serverAddresses );
395
+ DSO_LOGGER .debug ("Unable to connect to server/s {} ...sleeping for 1 sec." , serverAddresses );
396
396
DSO_LOGGER .debug ("Connection refused from server/s: {} {}" , serverAddresses , e .getMessage ());
397
397
synchronized (clientStopped ) {
398
398
clientStopped .wait (1000 );
@@ -407,7 +407,7 @@ private void openChannel(ClientMessageChannel channel) throws InterruptedExcepti
407
407
DSO_LOGGER .error (handshake .getMessage ());
408
408
throw new IllegalStateException (handshake .getMessage (), handshake );
409
409
} catch (final IOException ioe ) {
410
- DSO_LOGGER .info ("Unable to connect to server/s {} ...sleeping for 5 sec." , serverAddresses );
410
+ DSO_LOGGER .debug ("Unable to connect to server/s {} ...sleeping for 1 sec." , serverAddresses );
411
411
DSO_LOGGER .debug ("IOException connecting to server/s: {} {}" , serverAddresses , ioe .getMessage ());
412
412
synchronized (clientStopped ) {
413
413
clientStopped .wait (1000 );
0 commit comments