summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/fifa.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fifa.sh b/src/fifa.sh
index aab895a..be2f3a1 100755
--- a/src/fifa.sh
+++ b/src/fifa.sh
@@ -35,7 +35,7 @@ log ()
str="[LOG] `date +"%Y-%m-%d %H:%M:%S"` $@"
echo -e "$str"
echo -e "$str" > $LOG
- echo -e "$str" > $LOGFILE
+ echo -e "$str" >> $LOGFILE
}
@@ -46,7 +46,7 @@ debug ()
then
echo -e "$str"
echo -e "$str" > $LOG
- echo -e "$str" > $LOGFILE
+ echo -e "$str" >> $LOGFILE
fi
}