Method: Chef::Formatters::IndentableOutputStream#puts_line

Defined in:
lib/chef/formatters/indentable_output_stream.rb

#puts_line(string, *args) ⇒ Object

Print an entire line from start to end. This will terminate any existing lines and cause indentation.

Parameters:



52
53
54
# File 'lib/chef/formatters/indentable_output_stream.rb', line 52

def puts_line(string, *args)
  print(string, from_args(args, start_line: true, end_line: true))
end