From: Holger Levsen Date: Thu, 20 Sep 2012 11:24:41 +0000 (+0200) Subject: add debugging output X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=c5d3231c5c0e07d3946af095ef9dcd3f96fc3b81;p=profitbricks%2Fjenkins-build-scripts.git add debugging output --- 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: