BUG-5844: Fix ComplexRouteEntry creation
[bgpcep.git] / bgp / path-selection-mode / src / main / java / org / opendaylight / protocol / bgp / mode / impl / base / BaseAbstractRouteEntry.java
index 35408a13b92823a29ca0a587723f6e3842f40c71..d86bfee898e3900ccb70a751b709a2d491686e91 100644 (file)
@@ -90,7 +90,7 @@ abstract class BaseAbstractRouteEntry extends AbstractRouteEntry {
         final boolean modified = !newBestPath.equals(this.bestPath);
         if (modified) {
             this.removedBestPath = this.bestPath;
-            LOG.trace("Previous best {}, current best {}, result {}", this.bestPath, newBestPath, modified);
+            LOG.trace("Previous best {}, current best {}", this.bestPath, newBestPath);
             this.bestPath = newBestPath;
         }
         return modified;