# File lib/lumberjack/device/log_file.rb, line 11 def initialize(path, options = {}) @path = File.expand_path(path) FileUtils.mkdir_p(File.dirname(@path)) super(File.new(@path, 'a', :encoding => "ascii-8bit"), options) end