Method: Rex::Ui::Text::Shell#print

Defined in:
lib/rex/ui/text/shell.rb

Prints a raw message to the output handle.



322
323
324
325
326
# File 'lib/rex/ui/text/shell.rb', line 322

def print(msg='')
  return if (disable_output == true)
  self.on_print_proc.call(msg) if self.on_print_proc
  log_output(output.print(msg))
end