Util : add _debug.

This commit is contained in:
Dmitry Voronin 2023-12-21 22:51:38 +03:00
parent b808f48053
commit 6b8258f585

View file

@ -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() {