method
new
new(log, level = DEBUG)
public
Hide source
# File activesupport/lib/active_support/buffered_logger.rb, line 47 def initialize(log, level = DEBUG) @level = level @log_dest = log unless log.respond_to?(:write) unless File.exist?(File.dirname(log)) ActiveSupport::Deprecation.warn(Automatic directory creation for '#{log}' is deprecated. Please make sure the directory for your log file exists before creating the logger.) FileUtils.mkdir_p(File.dirname(log)) end end @log = open_logfile log end