BUG-8618: improve logging
[controller.git] / opendaylight / md-sal / cds-access-client / src / main / java / org / opendaylight / controller / cluster / access / client / ClientActorBehavior.java
index 33e0c56d9ea2d6496d2d01651d9d30fa53fe4013..358704524a07451da1e72c26bec9192f2fd71e06 100644 (file)
@@ -225,8 +225,8 @@ public abstract class ClientActorBehavior<T extends BackendInfo> extends
                 // Already reconnecting, do not churn the logs
                 return this;
             } else if (conn != null) {
                 // Already reconnecting, do not churn the logs
                 return this;
             } else if (conn != null) {
-                LOG.info("{}: connection {} indicated no sequencing mismatch on {} sequence {}, reconnecting it",
-                    persistenceId(), conn, failure.getTarget(), failure.getSequence(), cause);
+                LOG.info("{}: connection {} indicated sequencing mismatch on {} sequence {} ({}), reconnecting it",
+                    persistenceId(), conn, failure.getTarget(), failure.getSequence(), command.getTxSequence(), cause);
                 return conn.reconnect(this, cause);
             }
         }
                 return conn.reconnect(this, cause);
             }
         }