summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-13 14:19:12 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-13 14:19:12 +0100
commitb8977d97e6d808d447790e46b5e555921a1232f4 (patch)
treeee935c3fa5fab8c47f40ead736d9ec620faa8a9c
parente4c4661d3be2ca8776a9ed962e33fc5f87edcef0 (diff)
append, dont overwrite.. mkay?
-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
}