class Puma::DSL
def stdout_redirect(stdout=nil, stderr=nil, append=false)
@example
stdout_redirect '/app/lolcat/log/stdout', '/app/lolcat/log/stderr'
@example
specifies whether the output is appended, the default is +false+.
Redirect +STDOUT+ and +STDERR+ to files specified. The +append+ parameter
def stdout_redirect(stdout=nil, stderr=nil, append=false) @options[:redirect_stdout] = stdout @options[:redirect_stderr] = stderr @options[:redirect_append] = append end