Class: HTTParty::Logger::ApacheFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/httparty/logger/apache_formatter.rb

Overview

:nodoc:

Constant Summary collapse

TAG_NAME =
HTTParty.name

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(logger, level) ⇒ ApacheFormatter

Returns a new instance of ApacheFormatter.



10
11
12
13
# File 'lib/httparty/logger/apache_formatter.rb', line 10

def initialize(logger, level)
  @logger = logger
  @level  = level.to_sym
end

Instance Attribute Details

#levelObject

Returns the value of attribute level.



8
9
10
# File 'lib/httparty/logger/apache_formatter.rb', line 8

def level
  @level
end

#loggerObject

Returns the value of attribute logger.



8
9
10
# File 'lib/httparty/logger/apache_formatter.rb', line 8

def logger
  @logger
end

Instance Method Details

#format(request, response) ⇒ Object



15
16
17
18
19
20
# File 'lib/httparty/logger/apache_formatter.rb', line 15

def format(request, response)
  @request = request
  @response = response

  logger.public_send level, message
end