Module: Furnish::Logger::Mixins

Included in:
ProvisionerGroup, Scheduler
Defined in:
lib/furnish/logger.rb

Overview

Intended to be mixed in by other classes, provides an API for dealing with the standard logger object set as Furnish.logger.

Instance Method Summary collapse

Instance Method Details

#if_debug(*args, &block) ⇒ Object

Delegates to Furnish::Logger#if_debug.



51
52
53
# File 'lib/furnish/logger.rb', line 51

def if_debug(*args, &block)
  Furnish.logger.if_debug(*args, &block)
end