Method: Unicorn::Configurator#stdout_path

Defined in:
lib/unicorn/configurator.rb

#stdout_path(path) ⇒ Object

Same as stderr_path, except for $stdout. Not many Rack applications write to $stdout, but any that do will have their output written here. It is safe to point this to the same location a stderr_path. Like stderr_path, this defaults to /dev/null when daemonized.



597
598
599
# File 'lib/unicorn/configurator.rb', line 597

def stdout_path(path)
  set_path(:stdout_path, path)
end