From 43cae4a0e0313cdbb0088a7b3e99785ec91a0e88 Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Sat, 7 Feb 2015 10:42:35 -0500 Subject: [PATCH] verbose logging is now debug --- lib/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.sh b/lib/utils.sh index c42f5c0..3572cf0 100755 --- a/lib/utils.sh +++ b/lib/utils.sh @@ -117,7 +117,7 @@ function header() { local _message="========== ${@} ========== "; echo "$(_ # Log messages when verbose is set to "1" verbose() { if [ "${verbose}" == "1" ]; then - info "$@" + debug "$@" fi }