Commit 8f227667 authored by Reinout van Rees's avatar Reinout van Rees

Moved the log statement around, it was too verbose in the previous location

parent cc9d4195
......@@ -647,13 +647,15 @@ class Installer:
if req in processed:
# Ignore cyclic or redundant dependencies.
continue
logger.debug("Processing requirement %s (constrained to %s)",
current_requirement, req)
dist = best.get(req.key)
if dist is None:
try:
dist = env.best_match(req, ws)
except pkg_resources.VersionConflict as err:
logger.debug(
"Version conflict while processing requirement %s "
"(constrained to %s)",
current_requirement, req)
if req.key in ['zc.buildout', 'setuptools']:
# We're bootstrapping zc.buildout with a different
# version than the one we specified in our versions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment