From fc931069978da523a596ab6dade310d0759e3cdc Mon Sep 17 00:00:00 2001 From: Robin Wittler Date: Wed, 3 Aug 2011 13:40:08 +0200 Subject: [PATCH] add startup log message --- testgit_build.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/testgit_build.py b/testgit_build.py index 8f60f15..c13ac5c 100755 --- a/testgit_build.py +++ b/testgit_build.py @@ -111,6 +111,13 @@ def exit_error(): sys.exit(1) if __name__ == '__main__': + logger.debug( + 'Initialised with that items: %s' + ', '.join( + lambda x: '%s => %s' %(x[0], x[1]), + os.environ.iteritems() + ) + ) if git_helper.git_clone_remote_repository(GIT_REPO_PATH, GIT_TARGET_DIR): logger.info('git clone was successfull') else: -- 2.39.5