diff options
4 files changed, 13 insertions, 38 deletions
diff --git a/catalog-dao/src/main/java/org/openecomp/sdc/be/dao/janusgraph/JanusGraphClient.java b/catalog-dao/src/main/java/org/openecomp/sdc/be/dao/janusgraph/JanusGraphClient.java index a44bbd8e12..20bbac3881 100644 --- a/catalog-dao/src/main/java/org/openecomp/sdc/be/dao/janusgraph/JanusGraphClient.java +++ b/catalog-dao/src/main/java/org/openecomp/sdc/be/dao/janusgraph/JanusGraphClient.java @@ -209,7 +209,7 @@ public class JanusGraphClient { try { JanusGraphFactory.drop(graph); } catch (BackendException e) { - e.printStackTrace(); + logger.error(e.getMessage(),e); } } } diff --git a/common-app-logging/src/main/java/org/openecomp/sdc/common/log/wrappers/Logger.java b/common-app-logging/src/main/java/org/openecomp/sdc/common/log/wrappers/Logger.java index 8f733b4f5e..284104cd57 100644 --- a/common-app-logging/src/main/java/org/openecomp/sdc/common/log/wrappers/Logger.java +++ b/common-app-logging/src/main/java/org/openecomp/sdc/common/log/wrappers/Logger.java @@ -132,7 +132,7 @@ public class Logger implements org.slf4j.Logger { metric.startTimer() .stopTimer(); } catch (Exception e) { - e.printStackTrace(); + error(e.getMessage(), e); } metric.log(ONAPLogConstants.Markers.INVOKE_RETURN, LogLevel.INFO, msg, params); } diff --git a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java index ee802640c4..4ce87427aa 100644 --- a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java +++ b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java @@ -24,46 +24,21 @@ import org.openecomp.sdc.notification.types.NotificationsStatusDto; import java.util.UUID; import java.util.function.Consumer; +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.Setter; - +@Getter +@Setter +@AllArgsConstructor public class NotificationReceiver { - public String ownerId = null; - public Consumer<NotificationsStatusDto> notesProcessor = null; - public UUID lastEventId = null; - - NotificationReceiver(String ownerId, UUID lastEventId, Consumer<NotificationsStatusDto> notesProcessor) { - this.ownerId = ownerId; - this.lastEventId = lastEventId; - this.notesProcessor = notesProcessor; - } + private String ownerId = null; + private UUID lastEventId = null; + private Consumer<NotificationsStatusDto> notesProcessor = null; NotificationReceiver(String ownerId, Consumer<NotificationsStatusDto> notesProcessor) { this(ownerId, null, notesProcessor); } - - public void setOwnerId(String ownerId) { - this.ownerId = ownerId; - } - - public String getOwnerId() { - return this.ownerId; - } - - public void setNotesProcessor(Consumer<NotificationsStatusDto> notesProcessor) { - this.notesProcessor = notesProcessor; - } - - public Consumer<NotificationsStatusDto> getNotesProcessor() { - return this.notesProcessor; - } - - public void setLastEventId(UUID lastEventId) { - this.lastEventId = lastEventId; - } - - public UUID getlastEventId() { - return this.lastEventId; - } } diff --git a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java index cde6419aa8..dce8edb356 100644 --- a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java +++ b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java @@ -89,7 +89,7 @@ public class NotificationWorker { for (NotificationReceiver receiver : currUsers.values()) { String ownerId = receiver.getOwnerId(); - UUID eventId = receiver.getlastEventId(); + UUID eventId = receiver.getLastEventId(); NotificationsStatusDto status = news.getNewNotifications(ownerId, eventId, selectionLimit); if(Objects.nonNull(status) && CollectionUtils.isNotEmpty(status.getNotifications())) { receiver.setLastEventId(status.getLastScanned()); @@ -103,7 +103,7 @@ public class NotificationWorker { public void register(String ownerId, UUID lastDelivered, Consumer<NotificationsStatusDto> notesProcessor) { NotificationReceiver receiver = new NotificationReceiver(ownerId, lastDelivered, notesProcessor); activeUsers.put(ownerId, receiver); - LOGGER.debug("User {} is registered with eventId: {}", ownerId, receiver.getlastEventId()); + LOGGER.debug("User {} is registered with eventId: {}", ownerId, receiver.getLastEventId()); } public void unregister(String ownerId) { |