Method: Rex::Ui::Text::Shell#print_line
- Defined in:
- lib/rex/ui/text/shell.rb
#print_line(msg = '') ⇒ Object
Prints a line of text to the output handle.
| 299 300 301 302 303 304 | # File 'lib/rex/ui/text/shell.rb', line 299 def print_line(msg='') return if (disable_output == true) self.on_print_proc.call(msg) if self.on_print_proc log_output(output.print_line(msg)) end |