module PaulBunyan::TaggedLogging
Public Instance Methods
flush()
click to toggle source
Calls superclass method
# File lib/paul_bunyan/tagged_logging.rb, line 19 def flush clear_tags! super if defined?(super) end
tagged(*tags) { |self| ... }
click to toggle source
# File lib/paul_bunyan/tagged_logging.rb, line 15 def tagged(*tags) formatter.tagged(*tags) { yield self } end