# File lib_ctrl/rucy/params.rb, line 609
    def server_setup(control, err_mon, server)
      if (@params['access_log_logging']) then
        server.logging_access(@params['access_log_format'])
      end
      for logfile in @params['access_logs']
        begin
          privilege = server.privilege
          if (privilege.privileged_user?) then
            unless (@File.exist? logfile['path']) then
              privilege.touch(logfile['path'])
            end
          end
          output = @File.open(logfile['path'], 'a')
          control.add_logfile(output)
          access_log = AccessLog.new(output, logfile['format'])
          server.add_access_log(access_log)
          server.debug("open #{logfile['path'].inspect} access log.")
        rescue StandardError, ScriptError
          err_mon.capture_logging_error($!, logfile['path'])
          server.err("error: not opened #{logfile['path'].inspect}: (#{$!.class}) #{$!}")
        end
      end
      nil
    end