summaryrefslogtreecommitdiff
path: root/src/rebar_packages.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2017-03-02 19:30:11 -0800
committerTristan Sloughter <t@crashfast.com>2017-03-02 19:30:11 -0800
commit695da1e0c2d9cea1bece49c9e1ef9fdad58464cc (patch)
tree478525b09b53a2efa15bd4c725619258c98ac5de /src/rebar_packages.erl
parent9e8256ba73770d15fc038271f96bdd1b2128cde9 (diff)
change package version warning to debug
Diffstat (limited to 'src/rebar_packages.erl')
-rw-r--r--src/rebar_packages.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_packages.erl b/src/rebar_packages.erl
index 4cce5a8..5b6ab5c 100644
--- a/src/rebar_packages.erl
+++ b/src/rebar_packages.erl
@@ -207,10 +207,10 @@ handle_single_vsn(Pkg, PkgVsn, Dep, Vsn, Constraint) ->
false ->
case {Pkg, PkgVsn} of
{undefined, undefined} ->
- ?WARN("Only existing version of ~s is ~s which does not match constraint ~~> ~s. "
+ ?DEBUG("Only existing version of ~s is ~s which does not match constraint ~~> ~s. "
"Using anyway, but it is not guaranteed to work.", [Dep, Vsn, Constraint]);
_ ->
- ?WARN("[~s:~s] Only existing version of ~s is ~s which does not match constraint ~~> ~s. "
+ ?DEBUG("[~s:~s] Only existing version of ~s is ~s which does not match constraint ~~> ~s. "
"Using anyway, but it is not guaranteed to work.", [Pkg, PkgVsn, Dep, Vsn, Constraint])
end,
{ok, Vsn}