From: Holger Levsen Date: Wed, 23 Jan 2013 14:19:08 +0000 (+0100) Subject: no info output on every cidb connection X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=5a8ca498a6b2d4d31e64a39c4dd7fea2e3ff372e;p=profitbricks%2Fjenkins-build-scripts.git no info output on every cidb connection --- diff --git a/cidb.py b/cidb.py index 108f1aa..126383a 100644 --- a/cidb.py +++ b/cidb.py @@ -29,6 +29,6 @@ logger = logging.getLogger() def db_connect(): """ Connects to the db and returns the Connection object. """ - logger.info("Connecting to database %s" % DB_NAME) + #logger.info("Connecting to database %s" % DB_NAME) return psycopg2.connect(database=DB_NAME, user=DB_USER, password=DB_PASSWD, host=DB_HOST, port=DB_PORT)