diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-12-06 12:38:21 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-12-06 20:08:36 -0600 |
commit | 571c62f7326491dc739a914f1dbaed9af459278e (patch) | |
tree | 46f77f7043e56535f3bdc22d01d1e6f3bc54ecff | |
parent | fb98dde7ecb894fe74055449dcaea77aa237115b (diff) |
output message when starting install_deps provider
-rw-r--r-- | src/rebar_prv_install_deps.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rebar_prv_install_deps.erl b/src/rebar_prv_install_deps.erl index 1be094c..9a3703c 100644 --- a/src/rebar_prv_install_deps.erl +++ b/src/rebar_prv_install_deps.erl @@ -65,6 +65,7 @@ init(State) -> -spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}. do(State) -> + ?INFO("Verifying dependencies...", []), Profile = rebar_state:current_profile(State), ProjectApps = rebar_state:project_apps(State), try |