Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Log request method and response size / status code
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2391 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Sep 28, 2005
1 parent b7faeb2 commit d87618d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionpack/lib/action_controller/base.rb
Expand Up @@ -628,7 +628,7 @@ def render_action(action_name, status = nil, with_layout = true)
def render_file(template_path, status = nil, use_full_path = false)
add_variables_to_assigns
assert_existance_of_template_file(template_path) if use_full_path
logger.info("Rendering #{template_path}" + (status ? "(#{status})" : '')) if logger
logger.info("Rendering #{template_path}" + (status ? " (#{status})" : '')) if logger
render_text(@template.render_file(template_path, use_full_path), status)
end

Expand Down Expand Up @@ -814,7 +814,7 @@ def initialize_current_url
end

def log_processing
logger.info "\n\nProcessing #{controller_class_name}\##{action_name} (for #{request_origin})"
logger.info "\n\nProcessing #{controller_class_name}\##{action_name} (for #{request_origin}) [#{request.method.to_s.upcase}]"
logger.info " Parameters: #{@params.inspect}"
end

Expand Down
1 change: 1 addition & 0 deletions actionpack/lib/action_controller/benchmarking.rb
Expand Up @@ -70,6 +70,7 @@ def perform_action_with_benchmark
log_message = "Completed in #{sprintf("%.5f", runtime)} (#{(1 / runtime).floor} reqs/sec)"
log_message << rendering_runtime(runtime) if @rendering_runtime
log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected?
log_message << " | #{response.body.size} bytes (#{headers["Status"]})"
log_message << " [#{complete_request_uri rescue "unknown"}]"
logger.info(log_message)
end
Expand Down

0 comments on commit d87618d

Please sign in to comment.