Why does Foreman not output some things until I press Control-C? Why does Foreman not output some things until I press Control-C? ruby ruby

Why does Foreman not output some things until I press Control-C?


If you are not seeing any output from your program, there is a likely chance that it is buffering stdout. Ruby buffers stdout by default.

you can fix this by putting the following code in your development.rb file:

$stdout.sync = true

http://github.com/ddollar/foreman/wiki/Missing-Output