1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Promote some logging from debug to info level.

This commit is contained in:
Tobias Svensson 2013-09-16 17:41:46 +01:00
parent 4af7ccaf5a
commit 5f8d038177
3 changed files with 4 additions and 9 deletions

View file

@ -4,14 +4,9 @@ module Sidetiq
include Celluloid
include Sidekiq::ExceptionHandler
# Public: Starts and supervises the clock actor.
def self.start!
actor.start!
end
# Public: Starts the clock loop.
def start!
debug "Sidetiq::Clock start"
info "Sidetiq::Clock start"
loop!
end

View file

@ -4,7 +4,7 @@ module Sidetiq
include Celluloid
def initialize
debug "Sidetiq::Handler initialize #{object_id}"
info "Sidetiq::Handler initialize #{object_id}"
super
end
end

View file

@ -23,14 +23,14 @@ module Sidetiq
def run!
motd
debug "Sidetiq::Supervisor start"
info "Sidetiq::Supervisor start"
super
end
def run
motd
debug "Sidetiq::Supervisor start (foreground)"
info "Sidetiq::Supervisor start (foreground)"
super
end