aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2016-01-12 22:40:06 -0600
committerTristan Sloughter <[email protected]>2016-01-12 22:40:06 -0600
commitdd0760a120973099afa71b583e7b99c9b1632098 (patch)
tree41453ecde5a2cf1d09ce77331d7d550e4d953422
parent833abfa304aa742bbf2b0fb1beb1b26a8ab45876 (diff)
downloadrelx-dd0760a120973099afa71b583e7b99c9b1632098.tar.gz
relx-dd0760a120973099afa71b583e7b99c9b1632098.tar.bz2
relx-dd0760a120973099afa71b583e7b99c9b1632098.zip
move missing beam and other app warnings to debug messages
-rw-r--r--src/rlx_app_discovery.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_app_discovery.erl b/src/rlx_app_discovery.erl
index 3d3bdb1..0d8d611 100644
--- a/src/rlx_app_discovery.erl
+++ b/src/rlx_app_discovery.erl
@@ -85,7 +85,7 @@ get_app_metadata(State, LibDirs) ->
{ok, _} = AppMeta ->
[AppMeta|Acc];
{warning, W} ->
- ec_cmd_log:warn(rlx_state:log(State), format_detail(W)),
+ ec_cmd_log:debug(rlx_state:log(State), format_detail(W)),
Acc;
{error, E} ->
ec_cmd_log:error(rlx_state:log(State), format_detail(E)),
@@ -111,7 +111,7 @@ resolve_app_metadata(State, LibDirs) ->
{error, _} ->
true;
{warning, W} ->
- ec_cmd_log:warn(rlx_state:log(State), format_detail(W)),
+ ec_cmd_log:debug(rlx_state:log(State), format_detail(W)),
false;
_ ->
false