From a8ae7aefd035be9a870997ba641aee7e80a2b62b Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Sat, 1 Aug 2020 22:27:04 -0400 Subject: [PATCH] Lower default log verbosity --- hack/lib/logging.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/lib/logging.sh b/hack/lib/logging.sh index ac44d0d44a2..8a175b3af4e 100644 --- a/hack/lib/logging.sh +++ b/hack/lib/logging.sh @@ -15,7 +15,7 @@ # limitations under the License. # Controls verbosity of the script output and logging. -KUBE_VERBOSE="${KUBE_VERBOSE:-5}" +KUBE_VERBOSE="${KUBE_VERBOSE:-2}" # Handler for when we exit automatically on an error. # Borrowed from https://gist.github.com/ahendrix/7030300