You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sf...@apache.org on 2015/07/14 02:25:19 UTC

[8/9] incubator-usergrid git commit: Add exception to failed policy log statement.

Add exception to failed policy log statement.


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/a7215580
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/a7215580
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/a7215580

Branch: refs/heads/two-dot-o-dev
Commit: a721558092fe9a04d9f96cd4ac020e6b430cc359
Parents: c467a38
Author: Michael Russo <mi...@gmail.com>
Authored: Mon Jul 13 17:03:13 2015 -0700
Committer: Michael Russo <mi...@gmail.com>
Committed: Mon Jul 13 17:03:13 2015 -0700

----------------------------------------------------------------------
 .../usergrid/persistence/queue/util/AmazonNotificationUtils.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/a7215580/stack/corepersistence/queue/src/main/java/org/apache/usergrid/persistence/queue/util/AmazonNotificationUtils.java
----------------------------------------------------------------------
diff --git a/stack/corepersistence/queue/src/main/java/org/apache/usergrid/persistence/queue/util/AmazonNotificationUtils.java b/stack/corepersistence/queue/src/main/java/org/apache/usergrid/persistence/queue/util/AmazonNotificationUtils.java
index 52a4925..1d86823 100644
--- a/stack/corepersistence/queue/src/main/java/org/apache/usergrid/persistence/queue/util/AmazonNotificationUtils.java
+++ b/stack/corepersistence/queue/src/main/java/org/apache/usergrid/persistence/queue/util/AmazonNotificationUtils.java
@@ -96,7 +96,7 @@ public class AmazonNotificationUtils {
         try {
             sqs.setQueueAttributes(queueAttributesRequest);
         }catch (Exception e){
-            logger.error("Failed to set permissions on QUEUE ARN=[{}] for TOPIC ARNs=[{}]", queueARN, topicARNs.toString());
+            logger.error("Failed to set permissions on QUEUE ARN=[{}] for TOPIC ARNs=[{}]", queueARN, topicARNs.toString(), e);
         }