File tree Expand file tree Collapse file tree
agent/src/com/cloud/agent Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ public void start() {
227227 try {
228228 _connection .start ();
229229 } catch (final NioConnectionException e ) {
230+ s_logger .warn ("NIO Connection Exception " + e );
230231 s_logger .info ("Attempted to connect to the server, but received an unexpected exception, trying again..." );
231232 }
232233 while (!_connection .isStartup ()) {
@@ -235,6 +236,7 @@ public void start() {
235236 try {
236237 _connection .start ();
237238 } catch (final NioConnectionException e ) {
239+ s_logger .warn ("NIO Connection Exception " + e );
238240 s_logger .info ("Attempted to connect to the server, but received an unexpected exception, trying again..." );
239241 }
240242 }
@@ -412,6 +414,7 @@ protected void reconnect(final Link link) {
412414 try {
413415 _connection .start ();
414416 } catch (final NioConnectionException e ) {
417+ s_logger .warn ("NIO Connection Exception " + e );
415418 s_logger .info ("Attempted to connect to the server, but received an unexpected exception, trying again..." );
416419 }
417420 _shell .getBackoffAlgorithm ().waitBeforeRetry ();
You can’t perform that action at this time.
0 commit comments