module FireLogger::Ext

Public Instance Methods

request(method, path) click to toggle source
# File lib/support/fire_logger.rb, line 5
def request(method, path)
  debug "[REQUEST] #{method}: #{path}"
end
response(response_value, path) click to toggle source
# File lib/support/fire_logger.rb, line 13
def response(response_value, path)
  debug "[RESPONSE] #{response_value.status}: #{ path }"
end
timed_out(method, path) click to toggle source
# File lib/support/fire_logger.rb, line 9
def timed_out(method, path)
  error "[TIMED OUT] #{method}: #{path}"
end