Procházet zdrojové kódy

Some cleanup

pull/902/head
Heinz N. Gies před 9 roky
rodič
revize
949eafd899
1 změnil soubory, kde provedl 11 přidání a 8 odebrání
  1. +11
    -8
      src/rebar_log.erl

+ 11
- 8
src/rebar_log.erl Zobrazit soubor

@ -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).

Načítá se…
Zrušit
Uložit