Class: SBF::Client::LOG

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

Constant Summary collapse

REQUIRED_METHODS =

rubocop:disable Style/MutableConstant

%i(debug info warn error fatal unknown add level)

Class Method Summary collapse

Class Method Details

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

rubocop:disable Style/MissingRespondToMissing



14
15
16
# File 'lib/stbaldricks/log.rb', line 14

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