# File lib/picnic/conf.rb, line 16
    def initialize(from_hash = {})
      @conf = HashWithIndifferentAccess.new(from_hash)
      
      @conf[:log] ||= HashWithIndifferentAccess.new
      @conf[:log].merge!(:file => STDOUT, :level => 'DEBUG')
      
      @conf[:uri_path] ||= "/"
    end