From: Holger Levsen Date: Wed, 20 Feb 2013 09:48:34 +0000 (+0100) Subject: no logging for db connections X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=2e75a025627c113157c58e5191ad85b055f8dff9;p=profitbricks%2Fjenkins-build-scripts.git no logging for db connections --- diff --git a/cidb.py b/cidb.py index e8dc9dd..1a0f9f3 100644 --- a/cidb.py +++ b/cidb.py @@ -23,6 +23,6 @@ else: def db_connect(): - 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)