From 5a8ca498a6b2d4d31e64a39c4dd7fea2e3ff372e Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 23 Jan 2013 15:19:08 +0100 Subject: [PATCH] no info output on every cidb connection --- cidb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5