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

26 lines
360 B
Ruby
Raw Normal View History

2012-01-22 14:32:38 -05:00
module Sidekiq
module Util
def watchdog(last_words)
yield
rescue => ex
STDERR.puts last_words
STDERR.puts ex
STDERR.puts ex.backtrace.join("\n")
end
def err(msg)
STDERR.puts(msg)
end
def log(msg)
STDOUT.puts(msg)
end
2012-01-22 19:01:46 -05:00
def verbose(msg)
STDOUT.puts(msg) if $DEBUG
end
2012-01-22 14:32:38 -05:00
end
end