It's a trifling, but tis the season - here's a simple way to add Rails logging functionality to a model that does not extend ActiveRecord::Base.

# logging.rb, place in lib directory
# Include to enable Rails logging in a class that does not extend a Rails base class.
module Logging
  def self.included(base)
    base.class_eval do
      extend Methods  # Add logger() class method
      include Methods # Add logger() instance method
    end
  end

  module Methods
    def logger
      RAILS_DEFAULT_LOGGER
    end
  end
end

# Non-ActiveRecord model to which to add logger methods
class PlainOldRubyModel
  include Logging
end

# In environment.rb or an initalizer
require 'logging'