minor fix of obviously wrong Logger in NeutronSubnet (was NeutronSubnet) 26/70926/2
authorMichael Vorburger <vorburger@redhat.com>
Fri, 13 Apr 2018 19:11:50 +0000 (21:11 +0200)
committerMichael Vorburger <vorburger@redhat.com>
Tue, 17 Apr 2018 08:07:05 +0000 (10:07 +0200)
FYI once we'll have enable FindBug enforcement, I can make this
automatically detected using infrautils:parent as the <parent> POM here;
would that be of interest to project neutron?

Change-Id: I689fdc9d6f7731336084788021994a7f30178f82
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet.java

index ba70c250b63627c4f4bbf2a44e95045011433000..54ddf3e879e441aff74dbb4cee2227fb7d694e8c 100644 (file)
@@ -25,7 +25,7 @@ import org.slf4j.LoggerFactory;
 @XmlRootElement
 @XmlAccessorType(XmlAccessType.NONE)
 public final class NeutronSubnet extends NeutronBaseAttributes<NeutronSubnet> {
-    private static final Logger LOG = LoggerFactory.getLogger(NeutronCRUDInterfaces.class);
+    private static final Logger LOG = LoggerFactory.getLogger(NeutronSubnet.class);
 
     private static final long serialVersionUID = 1L;
     private static final int IPV4_VERSION = 4;