Skip to content

Commit

Permalink
Add stderr to log
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmerfield committed Jul 20, 2018
1 parent 68daec4 commit 4cf616f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/production/start_blot.sh
Expand Up @@ -17,4 +17,5 @@ nvm use $BLOT_NODE_VERSION
echo "[`date -u +%Y-%m-%dT%T.%3NZ`] Starting Blot server" >> $BLOT_LOG

# Start the node application
node $BLOT_MAIN >> $BLOT_LOG
# "2>&1" redirects STERR to STDOUT so it is logged too
node $BLOT_MAIN >> $BLOT_LOG 2>&1

0 comments on commit 4cf616f

Please sign in to comment.