From 866f7dedee78e759b69ea7702e196b9032ff49ce Mon Sep 17 00:00:00 2001 From: Marc Egea i Sala Date: Mon, 30 Nov 2015 11:06:00 +0000 Subject: [PATCH] Fix error log folder Error log is stored under /var/log/err.log. This PR fixes it and stores the log under /var/log/wlgb/err.log --- services/git-bridge/bin/wlgb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/git-bridge/bin/wlgb b/services/git-bridge/bin/wlgb index 44f289b7cb..963a528b38 100755 --- a/services/git-bridge/bin/wlgb +++ b/services/git-bridge/bin/wlgb @@ -56,7 +56,7 @@ do_start() echo "Starting WriteLatex-Git Bridge..." start-stop-daemon --start --quiet --make-pidfile --pidfile $PIDFILE \ --exec /usr/bin/env LANG="C.UTF-8" $DAEMON -- \ - $DAEMON_ARGS >> /var/log/wlgb/out.log 2>> /var/log/err.log & + $DAEMON_ARGS >> /var/log/wlgb/out.log 2>> /var/log/wlgb/err.log & echo "WriteLatex-Git Bridge started." echo "Config file at /etc/wlgb/config.json" echo "Log file at /var/log/wlgb/out.log"