1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Log batch ID if available, fixes #2076

This commit is contained in:
Mike Perham 2014-12-06 13:00:50 -08:00
parent 5047f9220b
commit 4457f19e12
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
HEAD
-----------
- Log Sidekiq Pro's Batch ID if available [#2076]
3.3.0
-----------

View file

@ -4,7 +4,7 @@ module Sidekiq
class Logging
def call(worker, item, queue)
Sidekiq::Logging.with_context("#{worker.class.to_s} JID-#{item['jid']}") do
Sidekiq::Logging.with_context("#{worker.class.to_s} JID-#{item['jid']}#{" BID-#{item['bid']}" if item['bid']}") do
begin
start = Time.now
logger.info { "start" }