Skip to content

Instantly share code, notes, and snippets.

@liushooter
Forked from dblock/api_logger.rb
Created June 4, 2014 03:17
Show Gist options
  • Save liushooter/f94db6530880d2ed0909 to your computer and use it in GitHub Desktop.
Save liushooter/f94db6530880d2ed0909 to your computer and use it in GitHub Desktop.
class ApiLogger < Grape::Middleware::Base
def before
Rails.logger.info "[api] Requested: #{request_log_data.to_json}\n" +
"[api] #{response_log_data[:description]} #{response_log_data[:source_file]}:#{response_log_data[:source_line]}"
end
private
def request_log_data
request_data = {
method: env['REQUEST_METHOD'],
path: env['PATH_INFO'],
query: env['QUERY_STRING']
}
request_data[:user_id] = current_user.id if current_user
request_data
end
def response_log_data
{
description: env['api.endpoint'].options[:route_options][:description],
source_file: env['api.endpoint'].block.source_location[0][(Rails.root.to_s.length+1)..-1],
source_line: env['api.endpoint'].block.source_location[1]
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment