X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-monitoring%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fmonitoring%2FGet.java;h=6ab3cd4b6e638999ed9fa1787b8b3b8652e09422;hb=3927509ec3ecfa32a51b725d2b7155d425f5b877;hp=3b3f71b0ed0f3aad635d88d6b0bb93a3e4229aa3;hpb=a4bffc377489ceab979de681257c9629c561f4d7;p=controller.git diff --git a/opendaylight/netconf/netconf-monitoring/src/main/java/org/opendaylight/controller/netconf/monitoring/Get.java b/opendaylight/netconf/netconf-monitoring/src/main/java/org/opendaylight/controller/netconf/monitoring/Get.java index 3b3f71b0ed..6ab3cd4b6e 100644 --- a/opendaylight/netconf/netconf-monitoring/src/main/java/org/opendaylight/controller/netconf/monitoring/Get.java +++ b/opendaylight/netconf/netconf-monitoring/src/main/java/org/opendaylight/controller/netconf/monitoring/Get.java @@ -24,7 +24,7 @@ import org.w3c.dom.Element; public class Get extends AbstractNetconfOperation { - private static final Logger logger = LoggerFactory.getLogger(Get.class); + private static final Logger LOG = LoggerFactory.getLogger(Get.class); private final NetconfMonitoringService netconfMonitor; public Get(final NetconfMonitoringService netconfMonitor) { @@ -72,7 +72,7 @@ public class Get extends AbstractNetconfOperation { return innerResult; } catch (final RuntimeException e) { final String errorMessage = "Get operation for netconf-state subtree failed"; - logger.warn(errorMessage, e); + LOG.warn(errorMessage, e); throw new NetconfDocumentedException(errorMessage, NetconfDocumentedException.ErrorType.application, NetconfDocumentedException.ErrorTag.operation_failed,