From 0c5acf5576aba5379f87523b9e2f1a258c948a00 Mon Sep 17 00:00:00 2001 From: Michael Vorburger Date: Fri, 13 Apr 2018 21:11:50 +0200 Subject: [PATCH] minor fix of obviously wrong Logger in NeutronSubnet (was NeutronSubnet) FYI once we'll have enable FindBug enforcement, I can make this automatically detected using infrautils:parent as the POM here; would that be of interest to project neutron? Change-Id: I689fdc9d6f7731336084788021994a7f30178f82 Signed-off-by: Michael Vorburger --- .../main/java/org/opendaylight/neutron/spi/NeutronSubnet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet.java b/neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet.java index ba70c250b..54ddf3e87 100644 --- a/neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet.java +++ b/neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet.java @@ -25,7 +25,7 @@ import org.slf4j.LoggerFactory; @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) public final class NeutronSubnet extends NeutronBaseAttributes { - 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; -- 2.36.6