Util : add _debug.
This commit is contained in:
parent
b808f48053
commit
6b8258f585
|
@ -78,6 +78,12 @@ function _warn() {
|
|||
echo -e "${color_byellow}${*}${color_default}"
|
||||
}
|
||||
|
||||
# Report a debug to stdout.
|
||||
# Usage: _debug <MESSAGE>
|
||||
function _debug() {
|
||||
echo -e "${color_bwhite}${*}${color_default}"
|
||||
}
|
||||
|
||||
# Skip current iteration.
|
||||
# Usage: _skip [MESSAGE]
|
||||
function _skip() {
|
||||
|
|
Reference in a new issue