From 9460c30dc0df461a95d189564422f29c033cdd2f Mon Sep 17 00:00:00 2001 From: Anton Beloglazov Date: Mon, 1 Oct 2012 16:03:08 +1000 Subject: [PATCH] Changed the level of a DB init log message --- neat/db_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neat/db_utils.py b/neat/db_utils.py index 9f0533a..84c8c39 100644 --- a/neat/db_utils.py +++ b/neat/db_utils.py @@ -59,5 +59,5 @@ def init_db(sql_connection): connection = engine.connect() db = Database(connection, hosts, vms, vm_resource_usage) - log.info('Initialized a DB connection to %s', sql_connection) + log.debug('Initialized a DB connection to %s', sql_connection) return db