Changeset 2039
- Timestamp:
- 08/23/05 09:43:36 (3 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/benchmarking.rb (modified) (1 diff)
- trunk/actionpack/test/controller/benchmark_test.rb (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r2033 r2039 1 1 *SVN* 2 3 * Prevent the benchmark module from blowing up if a non-HTTP/1.1 request is processed 2 4 3 5 * Added :use_short_month option to select_month helper to show month names as abbreviations trunk/actionpack/lib/action_controller/benchmarking.rb
r1915 r2039 43 43 log_message << rendering_runtime(runtime) if @rendering_runtime 44 44 log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected? 45 log_message << " [#{complete_request_uri }]"45 log_message << " [#{complete_request_uri rescue "unknown"}]" 46 46 logger.info(log_message) 47 47 end