suppress all errors

This commit is contained in:
belliash 2012-01-04 14:22:34 +01:00
parent 16e943b746
commit 2e95cec195
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function logMessage() {
if [ -z ${TYPE} ]; then if [ -z ${TYPE} ]; then
TYPE=" - " TYPE=" - "
fi fi
echo -e "[${DATE}][${TYPE}] ${MESSAGE}" >> ${LOGFILE} { echo -e "[${DATE}][${TYPE}] ${MESSAGE}" >> ${LOGFILE}; } 2> /dev/null
fi fi
} }