Fix bad single { instead {} in logger message 60/41360/2
authorMichael Vorburger <vorburger@redhat.com>
Tue, 5 Jul 2016 22:07:37 +0000 (00:07 +0200)
committerMichael Vorburger <vorburger@redhat.com>
Thu, 7 Jul 2016 11:23:41 +0000 (11:23 +0000)
Change-Id: Ib1c97b983316dc7dbae4a06cde0a06dff0041993
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
vpnservice/aclservice/impl/src/main/java/org/opendaylight/netvirt/aclservice/AclServiceUtils.java

index bee60e71ad4e46c39d98d507c364879679f0c268..06f42f8f020a34d7f13e4973d357c7d85bdecfb0 100644 (file)
@@ -194,8 +194,7 @@ public class AclServiceUtils {
         }
         InterfaceAcl aclInPort = port.getAugmentation(InterfaceAcl.class);
         if (aclInPort == null) {
-            LOG.error("getSecurityGroupInPortList: no security group associated}",
-                port.getName());
+            LOG.error("getSecurityGroupInPortList: no security group associated to Interface port: {}", port.getName());
             return false;
         }
         return aclInPort.isPortSecurityEnabled();