verbose logging is now debug

This commit is contained in:
Nathaniel Landau
2015-02-07 10:42:35 -05:00
parent 572b6bf02b
commit 43cae4a0e0

View File

@@ -117,7 +117,7 @@ function header() { local _message="========== ${@} ========== "; echo "$(_
# Log messages when verbose is set to "1" # Log messages when verbose is set to "1"
verbose() { verbose() {
if [ "${verbose}" == "1" ]; then if [ "${verbose}" == "1" ]; then
info "$@" debug "$@"
fi fi
} }