From 000f8e9310f04ead9d79136ea48e491cdc2aa276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Tue, 29 Sep 2015 13:47:35 +0200 Subject: [PATCH] Debug logging for testballoon install --- src/octoprint/util/pip.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/octoprint/util/pip.py b/src/octoprint/util/pip.py index ccf8796c..9a860421 100644 --- a/src/octoprint/util/pip.py +++ b/src/octoprint/util/pip.py @@ -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)