simple logger added

This commit is contained in:
pavel.muhortov 2023-01-07 09:20:52 +03:00
parent ed1293c988
commit ef9e238aa6

View File

@ -15,18 +15,22 @@
## FUNCTIONS
#
addtologs() {
echo "$(date +'%Y.%m.%d-%H:%M:%S') $1" | tee -a $logs
}
execpause() {
read -p "Press [ENTER] to continue... "
}
execquite() {
echo "$(date +'%Y.%m.%d-%H:%M:%S') execution time is $(($(date +%s)-$time)) seconds, exit" | tee -a $logs
addtologs "execution time is $(($(date +%s)-$time)) seconds, exit"
if [ "${show}" != "qn" ];then
execpause
fi
exit
}
execerror() {
echo "$(date +'%Y.%m.%d-%H:%M:%S') error: $1" | tee -a $logs
addtologs "error: $1"
execquite
}
getconfig() {