From 61182d6b8b22629ef3d61ef72ec63805ccabc8d6 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sun, 3 Mar 2019 00:23:28 +0100 Subject: [PATCH] Removes extra log_env() call Don't print all environment variables for every single cmd() call, refs: https://github.com/kivy/buildozer/pull/802/files#r261844323 Leaves only one `log_env()` call on command failed. --- buildozer/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/buildozer/__init__.py b/buildozer/__init__.py index 4dea760..10b786b 100644 --- a/buildozer/__init__.py +++ b/buildozer/__init__.py @@ -295,7 +295,6 @@ class Buildozer(object): else: self.debug('Run {0!r} ...'.format(command.split()[0])) self.debug('Cwd {}'.format(kwargs.get('cwd'))) - self.log_env(self.DEBUG, kwargs["env"]) # open the process if sys.platform == 'win32':