Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / netconf / sal / NetconfDeviceSalFacade.java
@@ -24,7 +24,7 @@ import org.slf4j.LoggerFactory;
 
 public final class NetconfDeviceSalFacade implements AutoCloseable, RemoteDeviceHandler<NetconfSessionPreferences> {
 
-    private static final Logger logger= LoggerFactory.getLogger(NetconfDeviceSalFacade.class);
+    private static final Logger LOG = LoggerFactory.getLogger(NetconfDeviceSalFacade.class);
 
     private final RemoteDeviceId id;
     private final NetconfDeviceSalProvider salProvider;
@@ -63,7 +63,8 @@ public final class NetconfDeviceSalFacade implements AutoCloseable, RemoteDevice
 
     @Override
     public synchronized void onDeviceDisconnected() {
-        salProvider.getTopologyDatastoreAdapter().updateDeviceData(false, new NetconfDeviceCapabilities());
+        salProvider.getTopologyDatastoreAdapter().updateDeviceData(false,
+                new NetconfDeviceCapabilities());
         salProvider.getMountInstance().onTopologyDeviceDisconnected();
     }
 
@@ -86,7 +87,8 @@ public final class NetconfDeviceSalFacade implements AutoCloseable, RemoteDevice
             try {
                 resource.close();
             } catch (final Exception e) {
-                logger.warn("{}: Ignoring exception while closing {}", id, resource, e);
+                LOG.warn("{}: Ignoring exception while closing {}", id,
+                        resource, e);
             }
         }
     }