module DevDock::Log

Public Class Methods

debug(*stuff) click to toggle source
# File lib/dev_dock/log.rb, line 7
def self.debug(*stuff)
  if ENV['DEV_DOCK_DEBUG'] == '1'
    puts *stuff
  end
end
info(*stuff) click to toggle source
# File lib/dev_dock/log.rb, line 3
def self.info(*stuff)
  puts *stuff
end