module Guard::Compat::UI

def self.debug(message, options = {})

def self.debug(message, options = {})
  if Guard.const_defined?(:UI)
    Guard::UI.debug(message, options)
  else
    $stdout.puts(message)
  end
end