import org.openecomp.appc.adapter.netconf.internal.NetconfDataAccessServiceImpl;
 import org.openecomp.sdnc.sli.resource.dblib.DbLibService;
+import org.openecomp.appc.i18n.Msg;
+import com.att.eelf.configuration.EELFLogger;
+import com.att.eelf.configuration.EELFManager;
 import org.osgi.framework.BundleActivator;
 import org.osgi.framework.BundleContext;
 import org.osgi.framework.ServiceReference;
     /**
      * The logger to be used
      */
-    //private static final EELFLogger logger = EELFManager.getInstance().getLogger(AppcNetconfAdapterActivator.class);
+    private static final EELFLogger logger = EELFManager.getInstance().getLogger(AppcNetconfAdapterActivator.class);
 
     /**
      * Called when this bundle is started so the Framework can perform the bundle-specific activities necessary to start
             factoryRegistration = context.registerService(NetconfDataAccessService.class, DAService, null);
         }
 
-        //logger.info(Msg.COMPONENT_INITIALIZED, "NETCONF adapter");
+        logger.info(Msg.COMPONENT_INITIALIZED, "NETCONF adapter");
     }
 
     /**