Debug logging for testballoon install

This commit is contained in:
Gina Häußge 2015-09-29 13:47:35 +02:00
parent 7d38d66489
commit 000f8e9310

View file

@ -259,6 +259,8 @@ class PipCaller(CommandlineCaller):
p = sarge.run(sarge_command, stdout=sarge.Capture(), stderr=sarge.Capture())
output = p.stdout.text
self._logger.debug("Got output from {}: {}".format(" ".join(sarge_command), output))
install_dir_match = self.__class__.pip_install_dir_regex.search(output)
virtual_env_match = self.__class__.pip_virtual_env_regex.search(output)
writable_match = self.__class__.pip_writable_regex.search(output)