module Huyegger::Logger
Public Class Methods
new(logger)
click to toggle source
# File lib/huyegger/logger.rb, line 13 def self.new(logger) logger.formatter = Huyegger::Formatter.new(logger.formatter) logger.extend(self) end
Public Instance Methods
clear_context!()
click to toggle source
# File lib/huyegger/logger.rb, line 9 def clear_context! formatter.clear_context! end
context(*args)
click to toggle source
# File lib/huyegger/logger.rb, line 5 def context(*args) formatter.context(*args) end