time_bandits 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -29,7 +29,8 @@ module Rails
|
|
29
29
|
status = result.first
|
30
30
|
duration, additions = Thread.current[:time_bandits_completed_info]
|
31
31
|
|
32
|
-
message = "Completed #{status} #{::Rack::Utils::HTTP_STATUS_CODES[status]} in %.1fms
|
32
|
+
message = "Completed #{status} #{::Rack::Utils::HTTP_STATUS_CODES[status]} in %.1fms"
|
33
|
+
message << " (#{additions.join(' | ')})" % (run_time*1000) unless additions.blank?
|
33
34
|
info message
|
34
35
|
|
35
36
|
ActiveSupport::LogSubscriber.flush_all!
|
data/lib/time_bandits/version.rb
CHANGED