X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fconfig-persister-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fpersist%2Fimpl%2Fosgi%2FPropertiesProviderBaseImpl.java;h=d73f3b801e62c24a9fd63a2a47c1631bd049974e;hb=9e65b985dcc37f6752f7cbeb7587b6bc3f84c927;hp=15ed5c48fab01635635ea6578c3017d1bcd94a82;hpb=f21c5ee10e9c2663b313aed3e842ce0e952e6feb;p=controller.git diff --git a/opendaylight/netconf/config-persister-impl/src/main/java/org/opendaylight/controller/netconf/persist/impl/osgi/PropertiesProviderBaseImpl.java b/opendaylight/netconf/config-persister-impl/src/main/java/org/opendaylight/controller/netconf/persist/impl/osgi/PropertiesProviderBaseImpl.java index 15ed5c48fa..d73f3b801e 100644 --- a/opendaylight/netconf/config-persister-impl/src/main/java/org/opendaylight/controller/netconf/persist/impl/osgi/PropertiesProviderBaseImpl.java +++ b/opendaylight/netconf/config-persister-impl/src/main/java/org/opendaylight/controller/netconf/persist/impl/osgi/PropertiesProviderBaseImpl.java @@ -1,10 +1,9 @@ -/** - * @author Tomas Olvecky +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * - * 11 2013 - * - * Copyright (c) 2013 by Cisco Systems, Inc. - * All rights reserved. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.netconf.persist.impl.osgi; @@ -15,7 +14,7 @@ import org.slf4j.LoggerFactory; public class PropertiesProviderBaseImpl implements PropertiesProvider { - private static final Logger logger = LoggerFactory.getLogger(PropertiesProviderBaseImpl.class); + private static final Logger LOG = LoggerFactory.getLogger(PropertiesProviderBaseImpl.class); private final BundleContext bundleContext; public PropertiesProviderBaseImpl(BundleContext bundleContext) { @@ -29,7 +28,7 @@ public class PropertiesProviderBaseImpl implements PropertiesProvider { } public String getPropertyWithoutPrefix(String fullKey){ - logger.trace("Full key {}", fullKey); + LOG.trace("Full key {}", fullKey); return bundleContext.getProperty(fullKey); }