]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
add startup log message
authorRobin Wittler <robin.wittler@profitbricks.com>
Wed, 3 Aug 2011 11:40:08 +0000 (13:40 +0200)
committerRobin Wittler <robin.wittler@profitbricks.com>
Wed, 3 Aug 2011 11:40:08 +0000 (13:40 +0200)
testgit_build.py

index 8f60f1532f08b9c7ca188c2b4c7c2b6543eb1544..c13ac5c1e7b8a6e41e195ecbbd68829811bc3d9f 100755 (executable)
@@ -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: