Skip to content

Commit

Permalink
fix(awspubsub): add error logging (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
emjburns committed Jun 5, 2019
1 parent c5d68ba commit 9eb9166
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,12 @@ public String getName() {
@Override
public void run() {
log.info("Starting " + getWorkerName());
initializeQueue();
try {
initializeQueue();
} catch (Exception e) {
log.error("Error initializing queue {}", queueARN, e);
throw e;
}

while (true) {
try {
Expand Down

0 comments on commit 9eb9166

Please sign in to comment.