[Policy-52, Policy-92, Policy-93] Policy Enhancements and bugfixes
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / openecomp / policy / std / AutoClientEnd.java
index d7ec9ac..06a2e47 100644 (file)
@@ -165,12 +165,16 @@ public class AutoClientEnd {
                                try{
                                        handler.notificationReceived(notification);
                                }catch (Exception e){
-                                       logger.error("Error in Clients Handler Object : " + e.getMessage());
+                                       logger.error("Error in Clients Handler Object : ", e);
                                }
                        } else if (scheme.equals(NotificationScheme.AUTO_NOTIFICATIONS)) {
                                PDPNotification newNotification = MatchStore.checkMatch(notification);
                                if (newNotification.getNotificationType() != null) {
-                                       handler.notificationReceived(newNotification);
+                                       try{
+                                               handler.notificationReceived(newNotification);
+                                       }catch (Exception e){
+                                               logger.error("Error in Clients Handler Object : ", e);
+                                       }
                                }
                        }
                }