mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
erlc: fixup log message
Using the filename as a prefix is less readable and inconsistent with the other log messages. Before: DEBUG: src/foo.erl depends on... After: DEBUG: Dependencies of src/foo.erl ...
This commit is contained in:
parent
47c089aa80
commit
fe9d328cb5
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@ internal_erl_compile(Config, Source, OutDir, ErlOpts, G) ->
|
|||
%% Determine the target name and includes list by inspecting the source file
|
||||
Module = filename:basename(Source, ".erl"),
|
||||
Parents = get_parents(G, Source),
|
||||
log_files(?FMT("~s depends on", [Source]), Parents),
|
||||
log_files(?FMT("Dependencies of ~s", [Source]), Parents),
|
||||
|
||||
%% Construct the target filename
|
||||
Target = filename:join([OutDir | string:tokens(Module, ".")]) ++ ".beam",
|
||||
|
|
Loading…
Reference in a new issue