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