Sha256: 0431d89891c0944fe7db32d5c787a92a147a09924253779f083435f9df65a93b
Contents?: true
Size: 479 Bytes
Versions: 66
Compression:
Stored size: 479 Bytes
Contents
# See https://github.com/heroku/rails_stdout_logging # I have no idea why this library was created, but most Heroku / Rails apps use it. # This library completely obliterates any logger configuration you set. # So this patch fixes that. begin require "rails_stdout_logging" module RailsStdoutLogging class Rails2 < Rails def self.set_logger end end class Rails3 < Rails def self.set_logger(config) end end end rescue Exception end
Version data entries
66 entries across 66 versions & 2 rubygems