Update initial convergence message
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / ApplicationPeer.java
index b7062b6e9103aaf0da308426ef1f4c171ea036d3..b6ec48614305b05daa55bbcd70951d5b310e5c0a 100644 (file)
@@ -172,12 +172,12 @@ public class ApplicationPeer extends AbstractPeer implements ClusteredDOMDataTre
         tx.commit().addCallback(new FutureCallback<CommitInfo>() {
             @Override
             public void onSuccess(final CommitInfo result) {
-                LOG.trace("Successful commit");
+                LOG.trace("Successful commit of empty convergence");
             }
 
             @Override
             public void onFailure(final Throwable cause) {
-                LOG.error("Failed commit", cause);
+                LOG.error("Failed commit of empty convergence", cause);
             }
         }, MoreExecutors.directExecutor());
     }