Skip to content

Commit

Permalink
addressing the comments
Browse files Browse the repository at this point in the history
Signed-off-by: Riya Saxena <[email protected]>
  • Loading branch information
riysaxen-amzn committed Jun 6, 2024
1 parent 2a4cf26 commit e23e969
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ public void onResponse(SendNotificationResponse sendNotificationResponse) {
logger.info("Successfully sent a notification, Notification Event: " + sendNotificationResponse.getNotificationEvent());
}
else {
logger.error("Successfully sent a notification, Notification Event: " + sendNotificationResponse.getNotificationEvent());
logger.error("Error while sending a notification, Notification Event: " + sendNotificationResponse.getNotificationEvent());
}

}
@Override
public void onFailure(Exception e) {
logger.error("Failed while sending a notification: " + e.toString());
logger.error("Failed while sending a notification with " + configId, e);
}
});
}
Expand Down

0 comments on commit e23e969

Please sign in to comment.