diff --git a/lib/logstop/formatter.rb b/lib/logstop/formatter.rb index ce5651a..1a69a7b 100644 --- a/lib/logstop/formatter.rb +++ b/lib/logstop/formatter.rb @@ -34,8 +34,8 @@ def method_missing(method_name, *arguments, &block) end # for tagged logging - def respond_to?(method_name, include_private = false) - @formatter.send(:respond_to?, method_name, include_private) || super + def respond_to_missing?(method_name, include_private = false) + @formatter.respond_to?(method_name, include_private) || super end end end