Method: Fluent::Log#puts

Defined in:
lib/fluent/log.rb

#puts(msg) ⇒ Object



434
435
436
437
438
439
440
441
# File 'lib/fluent/log.rb', line 434

def puts(msg)
  @logger << msg + "\n"
  @out.flush
  msg
rescue
  # FIXME
  nil
end