I cannot log messages from my delayed_job process. Here is the job that is being run.
class MyJob def initialize(blahblah) @blahblah = blahblah @lo
This is working just fine for me in Rails 3.2:
class FiveMinuteAggregateJob < Struct.new(:link, :timestamp) def perform Rails.logger.info 'yup.' end end