fix debug start message

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2020-06-10 08:47:53 +02:00
parent 0c0a4cc3c9
commit eb89aee3d5
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
# This file is public domain in the USA and all free countries.
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
#
#### $$VERSION$$ v0.96-pre-21-g72c8531
#### $$VERSION$$ v0.96-pre-22-g0c0a4cc
#
# Exit Codes:
# - 0 sucess (hopefully)
@ -783,7 +783,7 @@ start_bot() {
local maxsleep="${BASHBOT_SLEEP:-5000}"
# redirect to Debug.log
[[ "${DEBUG}" == *"debug" ]] && exec &>>"${LOGDIR}/DEBUG.log"
[ -n "${DEBUG}" ] && date && echo "Start BASHBOT in Mode \"${DEBUG}\""
[ -n "${DEBUG}" ] && printf "%s Start BASHBOT in Mode \"%s\"" "$(date)" "${DEBUG}"
[[ "${DEBUG}" == "xdebug"* ]] && set -x
#cleaup old pipes and empty logfiles
find "${DATADIR}" -type p -delete