From 07027f1f4978ac9246033527772caaa01059c3cd Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 12 Jul 2018 17:18:02 -0500 Subject: [PATCH] Remove some left over debug logging We want good debug logging. But we had some things from having tried to figure out why the wheels weren't building/caching. Remove those, they're silly. Change-Id: Ifb661a6474b01e461303248b891e45bbee32bfc5 --- pbrx/container_images.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pbrx/container_images.py b/pbrx/container_images.py index 1ed8368..d31bc2b 100755 --- a/pbrx/container_images.py +++ b/pbrx/container_images.py @@ -182,8 +182,6 @@ def build(args): # source dir gets ... exciting. cont.run("python setup.py bdist_wheel -d /root/.cache/pip") - log.debug(cont.run("find /root/.cache/pip")) - log.debug(cont.run("ls -ltra /root/.cache")) # Install with all container-related extras so that we populate # the wheel cache as needed. cont.run( @@ -206,9 +204,6 @@ def build(args): cont.run( "apk add {packages} dumb-init".format(packages=packages) ) - wheel_list = cont.run("ls /root/.cache/pip/*whl") - log.debug("Wheels: {wheel_list}".format(wheel_list=wheel_list)) - log.debug(cont.run("find /root/.cache/pip")) cont.run( "pip install" " $(echo /root/.cache/pip/*.whl)[{base}]".format(