module Faraday::DetailedLogger::TaggedLogging::Formatter
Constants
- BLANK
Public Instance Methods
Source
# File lib/faraday/detailed_logger/tagged_logging.rb, line 19 def call(severity, timestamp, progname, msg) super(severity, timestamp, progname, "#{tags_text}#{msg}") end
Calls superclass method
Source
# File lib/faraday/detailed_logger/tagged_logging.rb, line 23 def tagged(*tags) new_tags = push_tags(*tags) yield self ensure pop_tags(new_tags.size) end