class Puma::LogWriter

def log(str)

Experimental RBS support (using type sampling data from the type_fusion project).

def log: (String str) -> nil

This signature was generated using 1 sample from 1 application.

Write +str+ to +@stdout+
def log(str)
  if @custom_logger&.respond_to?(:write)
    @custom_logger.write(format(str))
  else
    internal_write "#{@formatter.call str}\n"
  end
end