Method: RunLoop.log_debug

Defined in:
lib/run_loop/logging.rb

.log_debug(msg) ⇒ Object

magenta



56
57
58
59
60
# File 'lib/run_loop/logging.rb', line 56

def self.log_debug(msg)
  if RunLoop::Environment.debug?
    puts Color.magenta("DEBUG: #{msg}") if msg
  end
end