From c5d3231c5c0e07d3946af095ef9dcd3f96fc3b81 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 20 Sep 2012 13:24:41 +0200 Subject: [PATCH] add debugging output --- debian_build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian_build.py b/debian_build.py index 45683a9..dd7f697 100755 --- a/debian_build.py +++ b/debian_build.py @@ -132,18 +132,22 @@ def db_add_job(con, name): try: cur.execute("INSERT INTO jenkins_job(name) VALUES(%s)" " RETURNING id", (name)) + logger_debug("saved %s to databased" %(job_name)) except psycopg2.DatabaseError as e: # record already exist cur.execute("ROLLBACK TO a") # have to rollback after failed command + logger_debug("could not save %s to databased" %(job_name)) #def add_package_instance("profitbricks", $BUILD_JOBNAME, $BUILD_NUMBER, changes_file) def add_package_instance(origin, job_name, job_id, changes_file, version): con = db_connect() + logger_debug("save %s to database" %(job_name)) db_add_job(con, job_name) # add jenkins_build # for all packages in changes file # add deb_package (if not exist) # add deb_package_instance + # must not add development builds... or maybe? def dput_package_upload(changes_path): try: -- 2.39.5