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
This commit is contained in:
Marc Egea i Sala 2015-11-30 11:06:00 +00:00
parent dfb4835cc1
commit 866f7dedee

View file

@ -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"