diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2017-03-02 22:37:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-02 22:37:03 -0500 |
commit | 363ae665dd853ef1f09cca1e29285377ad9645de (patch) | |
tree | 478525b09b53a2efa15bd4c725619258c98ac5de /src/rebar_packages.erl | |
parent | 9e8256ba73770d15fc038271f96bdd1b2128cde9 (diff) | |
parent | 695da1e0c2d9cea1bece49c9e1ef9fdad58464cc (diff) |
Merge pull request #1502 from tsloughter/vsn_warning
change package version warning to debug
Diffstat (limited to 'src/rebar_packages.erl')
-rw-r--r-- | src/rebar_packages.erl | 4 |
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} |