Revision 9220
Added by Aaron Marcuse-Kubitza over 11 years ago
lib/sh/util.sh | ||
---|---|---|
158 | 158 |
# set verbosity |
159 | 159 |
if isset verbose; then : "${verbosity:=$(bool2int "$verbose")}"; fi |
160 | 160 |
if isset vb; then : "${verbosity:=$vb}"; fi |
161 |
: "${verbosity=3}" # default
|
|
161 |
: "${verbosity=2}" # default
|
|
162 | 162 |
: "${verbosity:=0}" # ensure non-empty |
163 | 163 |
export verbosity # propagate to invoked commands |
164 | 164 |
|
Also available in: Unified diff
lib/sh/util.sh: $verbosity: lowered the default from 3 to 2 because level 3 output (vars, etc.) is too verbose for the default output and is only needed for debugging