Method: VagrantPlugins::RemoteShell#print

Defined in:
lib/niman/vagrant/shell.rb


39
40
41
42
43
44
45
46
# File 'lib/niman/vagrant/shell.rb', line 39

def print(message, type)
  case type
  when :error
    @machine.ui.error(message, {:color => :red})
  else
    @machine.ui.info(message, {:color => :green})
  end
end