From a35277a38b8733b6f903e90342e815664adc62b0 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 13 May 2023 13:37:33 +0200 Subject: [PATCH] scripts/start.sh: Application already logs, so just redirect stdout to out.log --- scripts/start.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/start.sh b/scripts/start.sh index 5049ed7..ea73f06 100644 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -7,6 +7,4 @@ cd "$DIR" date ./stop.sh timestamp=`date +%s` -$BIN -p ./thalos.pid 2> logs/$timestamp.log & -rm -f out.log -ln -s logs/$timestamp.log out.log +$BIN -p ./thalos.pid 2> out.log &