Adding convenience method for determing verbosity of run

This commit is contained in:
Dave Smith 2009-12-07 15:17:03 -07:00
parent b5eded43d8
commit cb1899b818

View file

@ -28,7 +28,8 @@
get_modules/2, get_modules/2,
get_list/3, get_list/3,
get/3, get/3,
set_global/2, get_global/2]). set_global/2, get_global/2,
is_verbose/0]).
-include("rebar.hrl"). -include("rebar.hrl").
@ -91,6 +92,14 @@ get_global(Key, Default) ->
Value Value
end. end.
is_verbose() ->
case get_global(verbose, "0") of
"1" ->
true;
_ ->
false
end.
%% =================================================================== %% ===================================================================
%% Internal functions %% Internal functions