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.
302 303 304 305 306 307 |
# File 'lib/rex/ui/text/shell.rb', line 302 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 |