Browse Source

Some cleanup

pull/902/head
Heinz N. Gies 9 years ago
parent
commit
949eafd899
1 changed files with 11 additions and 8 deletions
  1. +11
    -8
      src/rebar_log.erl

+ 11
- 8
src/rebar_log.erl View File

@ -43,6 +43,16 @@
%% Public API
%% ===================================================================
intensity() ->
case os:getenv("REBAR_COLOR") of
"high" ->
high;
"low" ->
low;
_ ->
?DFLT_INTENSITY
end.
init(Caller, Verbosity) ->
Level = case valid_level(Verbosity) of
?ERROR_LEVEL -> error;
@ -50,14 +60,7 @@ init(Caller, Verbosity) ->
?INFO_LEVEL -> info;
?DEBUG_LEVEL -> debug
end,
Intensity = case os:getenv("REBAR_COLOR") of
"high" ->
high;
"low" ->
low;
_ ->
?DFLT_INTENSITY
end,
Intensity = intensity(),
Log = ec_cmd_log:new(Level, Caller, Intensity),
application:set_env(rebar, log, Log).

Loading…
Cancel
Save