Updated champ-lib to use the correct logger
[aai/champ.git] / champ-lib / champ-core / src / main / java / org / onap / aai / champcore / Formatter.java
index a6292f3..dfb6143 100644 (file)
@@ -2,8 +2,8 @@
  * ============LICENSE_START==========================================
  * org.onap.aai
  * ===================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017 Amdocs
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
  * ===================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * ============LICENSE_END============================================
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  */
 package org.onap.aai.champcore;
 
@@ -31,9 +30,13 @@ import java.util.List;
 import java.util.Optional;
 import java.util.stream.Stream;
 
+import org.onap.aai.champcore.ie.GraphMLImporterExporter;
+import org.onap.aai.cl.api.Logger;
+import org.onap.aai.cl.eelf.LoggerFactory;
+
 public class Formatter {
 
-    private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(Formatter.class);
+    private static final Logger LOGGER = LoggerFactory.getInstance().getLogger(Formatter.class);
     protected JsonParser parser = new JsonParser();
     protected final FormatMapper format;
 
@@ -56,7 +59,8 @@ public class Formatter {
             try {
                 return Optional.of(this.format.formatObject(v));
             } catch (Exception var3) {
-                LOGGER.warn("Failed to format vertex, returning a partial list", var3);
+                LOGGER.warn(ChampCoreMsgs.CHAMPCORE_FORMATTER_WARN,
+                    "Failed to format vertex, returning a partial list " + var3);
                 return Optional.empty();
             }
         }).forEach((obj) -> {