diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2018-03-30 08:26:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-30 08:26:21 -0700 |
commit | 827056301a18bb200dc4366ad52f80031aa339a0 (patch) | |
tree | 9059ba77becd913cf9002d2bf19a883bdbe0c380 /src | |
parent | b37737a63c67589a2aedeb7dff3d212ea4e87753 (diff) | |
parent | 15ec1ce305065ae0cb8b659b29111c7f275eeff7 (diff) |
Merge pull request #1737 from ferd/remove-debug-noise
Remove noisy debug message
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_app_discover.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rebar_app_discover.erl b/src/rebar_app_discover.erl index 441521b..382b36b 100644 --- a/src/rebar_app_discover.erl +++ b/src/rebar_app_discover.erl @@ -334,8 +334,6 @@ create_app_info(AppInfo, AppDir, AppFile) -> C = rebar_config:consult(AppDir), AppInfo3 = rebar_app_info:update_opts(AppInfo2, rebar_app_info:opts(AppInfo2), C), - ?DEBUG("create_app_info(~p, ~p, ~p) -> ~n~p~n", - [AppInfo, AppDir, AppFile, AppInfo3]), Valid = case rebar_app_utils:validate_application_info(AppInfo3) =:= true andalso rebar_app_info:has_all_artifacts(AppInfo3) =:= true of true -> |