# File lib_ctrl/rucy/control.rb, line 325
    def set_logging_params(params)
      params.each_key do |name|
        if (! (STDOUT_LEVEL.include? name) && name != 'logfiles') then
          raise "not a logging parameter: #{name}"
        end
      end
      @properties.set_params(params)
      nil
    end