From: Karl Hasselström Date: Mon, 14 Apr 2008 23:18:53 +0000 (+0200) Subject: Log environment and cwd as well as the actual command X-Git-Tag: v0.15-rc1~249 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/fa2fa45e4ea2e767e1b678b4f303d0f64846df1a?ds=sidebyside;hp=-c Log environment and cwd as well as the actual command When debugging subprocess calls (with STGIT_SUBPROCESS_LOG=debug), it's important to know the environment and working directory we pass to the subprocess, not just the command-line parameters. Signed-off-by: Karl Hasselström --- fa2fa45e4ea2e767e1b678b4f303d0f64846df1a diff --git a/stgit/run.py b/stgit/run.py index 77f2e65..0b79729 100644 --- a/stgit/run.py +++ b/stgit/run.py @@ -48,6 +48,12 @@ class Run: def __log_start(self): if _log_mode == 'debug': out.start('Running subprocess %s' % self.__cmd) + if self.__cwd != None: + out.info('cwd: %s' % self.__cwd) + if self.__env != None: + for k in sorted(self.__env.iterkeys()): + if k not in os.environ or os.environ[k] != self.__env[k]: + out.info('%s: %s' % (k, self.__env[k])) elif _log_mode == 'profile': out.start('Running subprocess %s' % self.__cmd[0]) self.__starttime = datetime.datetime.now()