From aadd29574c0bd537038f05698e3734fecaabc3ce Mon Sep 17 00:00:00 2001 From: Konstantin Haase Date: Fri, 9 Oct 2015 09:01:55 +0200 Subject: [PATCH] script/server: output to $stderr, maybe that way it will show up in heroku logs --- script/server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/server b/script/server index 716823c4..c4578701 100755 --- a/script/server +++ b/script/server @@ -8,7 +8,7 @@ cd "$(dirname "$0")/.." [ $WEB_CONCURRENCY ] || export WEB_CONCURRENCY=$(script/web_concurrency) [ $NGINX_WORKERS ] || export NGINX_WORKERS=$(script/web_concurrency --nginx) -echo "port=$PORT rack_env=$RACK_ENV web_concurrency=$WEB_CONCURRENCY nginx_workers=$NGINX_WORKERS" +echo "port=$PORT rack_env=$RACK_ENV web_concurrency=$WEB_CONCURRENCY nginx_workers=$NGINX_WORKERS" >&2 ruby="ruby -I lib -S" bexc="$ruby bundle exec"