Class: SBF::Client::LOG

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/stbaldricks/log.rb

Constant Summary collapse

REQUIRED_METHODS =
[:debug, :info, :warn, :error, :fatal, :unknown, :add, :level]

Class Method Summary collapse

Class Method Details

.method_missing(sym, *args, &block) ⇒ Object

rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing



12
13
14
# File 'lib/stbaldricks/log.rb', line 12

def self.method_missing(sym, *args, &block)
  SBF::Client::Configuration.logger.send(sym, *args, &block)
end