method
flush
flush()
public
Hide source
# File activesupport/lib/active_support/buffered_logger.rb, line 106 def flush @guard.synchronize do buffer.each do |content| @log.write(content) end # Important to do this even if buffer was empty or else @buffer will # accumulate empty arrays for each request where nothing was logged. clear_buffer end end