From 0ea172d5e3bdbc90d30e2e2d66fe1e4f9f4b326a Mon Sep 17 00:00:00 2001 From: John Bintz Date: Wed, 25 May 2011 08:23:42 -0400 Subject: [PATCH] remove a redundant thing --- lib/controller_filter_logging.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/controller_filter_logging.rb b/lib/controller_filter_logging.rb index 0236c1b..0beab4c 100644 --- a/lib/controller_filter_logging.rb +++ b/lib/controller_filter_logging.rb @@ -1,11 +1,10 @@ module AbstractController::Callbacks::ClassMethods def before_filter_with_logging(*args, &block) - filter_name = args.first.kind_of?(::Symbol) ? args.first : '<< anonymous >>' - if block_given? Rails.logger.debug("Can't log filters with blocks: #{caller[0..3].join("\n")}") before_filter_without_logging *args, &block else + filter_name = args.shift before_filter_without_logging create_logging_filter(filter_name), *args end end