fixed incorrect spacing after stamp to resolve logwatch errs

This commit is contained in:
Asif Bacchus 2019-01-30 11:57:10 -07:00
parent ec36c5ca12
commit 8efaed6bb7
1 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@ function quit {
for errCode in "${exitError[@]}"; do
errStamp="${errCode%%_*}"
errValue="${errCode##*_}"
echo -e "${err}${errStamp}-- [ERROR] ${errorExplain[$errValue]}" \
echo -e "${err}${errStamp} -- [ERROR] ${errorExplain[$errValue]}" \
"(code: ${errValue}) --${normal}" >> "$logFile"
done
exit 2
@ -429,9 +429,9 @@ fi
### Log start of script operations
echo -e "${note}[$(stamp)]--- Start $scriptName execution ---${normal}" \
echo -e "${note}[$(stamp)] --- Start $scriptName execution ---${normal}" \
>> "$logFile"
echo -e "${info}[$(stamp)]-- [INFO] Log file located at ${lit}${logFile}${info}" \
echo -e "${info}[$(stamp)] -- [INFO] Log file located at ${lit}${logFile}${info}" \
"--${normal}" >> "$logFile"