mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-29 18:53:52 +00:00
debug should always last argument
This commit is contained in:
parent
d85c7794a9
commit
9799db4cb9
@ -11,7 +11,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.98-0-g487deee
|
#### $$VERSION$$ v0.99-dev-1-gd85c779
|
||||||
#
|
#
|
||||||
# Exit Codes:
|
# Exit Codes:
|
||||||
# - 0 success (hopefully)
|
# - 0 success (hopefully)
|
||||||
@ -75,9 +75,10 @@ log_error(){
|
|||||||
printf"%s: %s\n" "$(date)" "$*" >>"${ERRORLOG}"
|
printf"%s: %s\n" "$(date)" "$*" >>"${ERRORLOG}"
|
||||||
}
|
}
|
||||||
# additional tests if we run in debug mode
|
# additional tests if we run in debug mode
|
||||||
# $1 where $2 command $3 may debug
|
|
||||||
export BASHBOTDEBUG
|
export BASHBOTDEBUG
|
||||||
[[ "${3}" == *"debug"* ]] && BASHBOTDEBUG="yes"
|
# debug should always last argument
|
||||||
|
[[ "${BASH_ARGV[0]}" == *"debug"* ]] && BASHBOTDEBUG="yes"
|
||||||
|
# $1 where $2 command $3 may debug
|
||||||
debug_checks(){
|
debug_checks(){
|
||||||
[ -z "${BASHBOTDEBUG}" ] && return
|
[ -z "${BASHBOTDEBUG}" ] && return
|
||||||
local DATE WHERE MYTOKEN; DATE="$(date)"; WHERE="${1}"; shift
|
local DATE WHERE MYTOKEN; DATE="$(date)"; WHERE="${1}"; shift
|
||||||
|
Loading…
Reference in New Issue
Block a user