module LogStashLogger::TaggedLogging::Formatter
Public Instance Methods
tagged(*tags) { |self| ... }
click to toggle source
# File lib/logstash-logger/tagged_logging.rb, line 14 def tagged(*tags) new_tags = push_tags(*tags) yield self ensure pop_tags(new_tags.size) end