module Faraday::DetailedLogger::TaggedLogging::Formatter
Constants
- BLANK
Public Instance Methods
call(severity, timestamp, progname, msg)
click to toggle source
Calls superclass method
# File lib/faraday/detailed_logger/tagged_logging.rb, line 19 def call(severity, timestamp, progname, msg) super(severity, timestamp, progname, "#{tags_text}#{msg}") end
tagged(*tags) { |self| ... }
click to toggle 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