about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-01-05 17:31:56 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-01-05 17:31:56 -0600
commit03aeab857f0972e74910307f1a5954353eb70a28 (patch)
treeb0b6243ee40684a949cff440bb56dcad7eec8674 /app/workers
parentf441770e50621ac59a7b022ee2127964935b2b8d (diff)
parentf6adb409fd8f4bf42c1da54cc1e7e42886612c14 (diff)
Merge remote-tracking branch 'personal/merge/tootsuite/master' into gs-master
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/pubsubhubbub/subscribe_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/pubsubhubbub/subscribe_worker.rb b/app/workers/pubsubhubbub/subscribe_worker.rb
index e350973e1..2e176d1c1 100644
--- a/app/workers/pubsubhubbub/subscribe_worker.rb
+++ b/app/workers/pubsubhubbub/subscribe_worker.rb
@@ -20,7 +20,7 @@ class Pubsubhubbub::SubscribeWorker
 
   sidekiq_retries_exhausted do |msg, _e|
     account = Account.find(msg['args'].first)
-    logger.error "PuSH subscription attempts for #{account.acct} exhausted. Unsubscribing"
+    Sidekiq.logger.error "PuSH subscription attempts for #{account.acct} exhausted. Unsubscribing"
     ::UnsubscribeService.new.call(account)
   end