Change log levels to reduce the amount of logs generated
[ccsdk/features.git] / sdnr / wt / devicemanager-o-ran-sc / o-ran / ru-fh / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / oran / impl / dom / DOMNotificationToXPath.java
index abe89df..3d73533 100644 (file)
@@ -224,10 +224,10 @@ public class DOMNotificationToXPath {
         Instant eventTime;
         if (domNotification instanceof DOMEvent) {
             eventTime = ((DOMEvent) domNotification).getEventInstant();
-            LOG.info("Event time {}", eventTime);
+            LOG.debug("Event time {}", eventTime);
         } else {
             eventTime = Instant.now();
-            LOG.info("Defaulting to actual time of processing the notification - {}", eventTime);
+            LOG.debug("Defaulting to actual time of processing the notification - {}", eventTime);
         }
         return eventTime;
     }