install: Make some warnings DEBUG rather than INFO

* `warning: no previously-included files matching`
* `warning: no files found matching`

See: GH-1070
This commit is contained in:
Marc Abramowitz 2014-12-12 11:52:56 -08:00
parent 6388435996
commit a3842b2a82
1 changed files with 3 additions and 1 deletions

View File

@ -912,9 +912,11 @@ exec(compile(
r'^byte-compiling ',
r'^SyntaxError:',
r'^SyntaxWarning:',
r'^warning: no previously-included files matching \'.*\'',
r'^warning: no files found matching \'.*\' under directory',
# Not sure what this warning is, but it seems harmless:
r"^warning: manifest_maker: standard file '-c' not found$"]:
if re.search(regex, line.strip()):
if not line or re.search(regex, line.strip()):
level = logging.DEBUG
break
return (level, line)