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:
parent
4af7ccaf5a
commit
5f8d038177
3 changed files with 4 additions and 9 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue