mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-21 20:35:10 +00:00
Improve _debug()
.
This commit is contained in:
parent
fff87648d4
commit
dfbc83e12c
21
hosts
21
hosts
@ -90,23 +90,14 @@ _debug() {
|
||||
if [[ "${_USE_DEBUG:-"0"}" -eq 1 ]]
|
||||
then
|
||||
__DEBUG_COUNTER=$((__DEBUG_COUNTER+1))
|
||||
# Prefix debug message with "bug (U+1F41B)"
|
||||
printf "🐛 %s " "${__DEBUG_COUNTER}"
|
||||
"${@}"
|
||||
printf "――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――\\n"
|
||||
{
|
||||
# Prefix debug message with "bug (U+1F41B)"
|
||||
printf "🐛 %s " "${__DEBUG_COUNTER}"
|
||||
"${@}"
|
||||
printf "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――\\n"
|
||||
} 1>&2
|
||||
fi
|
||||
}
|
||||
# debug()
|
||||
#
|
||||
# Usage:
|
||||
# debug "Debug info. Variable: $0"
|
||||
#
|
||||
# Print the specified message if the `$_USE_DEBUG` variable has been set.
|
||||
#
|
||||
# This is a shortcut for the _debug() function that simply echos the message.
|
||||
debug() {
|
||||
_debug echo "${@}"
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
# Error Messaging
|
||||
|
Loading…
Reference in New Issue
Block a user