Remove noisy and useless parsing requirements LOG

Change-Id: Ia991eab924323410a528549bd58b68f0c897c397
This commit is contained in:
Joshua Harlow 2015-08-04 11:00:51 -07:00
parent b031771b26
commit a0fea71159
1 changed files with 0 additions and 4 deletions

View File

@ -215,10 +215,6 @@ def read_requirement_files(files):
try:
reqs = REQUIREMENT_FILE_CACHE[cache_key]
except KeyError:
LOG.debug('Parsing requirements from %s', filename)
with open(filename, 'rb') as fh:
for line in fh:
LOG.debug(">> %s", line.strip())
reqs = tuple(pip_req.parse_requirements(filename))
REQUIREMENT_FILE_CACHE[cache_key] = reqs
pip_requirements.extend(reqs)