method

log

log(meth, fmt, *args)
private

No documentation available.

# File lib/webrick/httpauth/authenticator.rb, line 53
      def log(meth, fmt, *args)
        msg = format("%s %s: ", @auth_scheme, @realm)
        msg << fmt % args
        @logger.send(meth, msg)
      end