From cbca1196b426046e4cb2cf8c716797a6af339eb7 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 14 Jan 2011 19:36:57 +0100 Subject: [PATCH] [FIX] changed a warning to a debug bzr revid: fp@tinyerp.com-20110114183657-3mdz433zn2wlx2s8 --- bin/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index eaa8cd7c029..49eb275e9da 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -2592,7 +2592,7 @@ class orm(orm_template): cr.execute('DROP INDEX "%s_%s_index"' % (self._table, k)) cr.commit() msg = "Table '%s': dropping index for column '%s' of type '%s' as it is not required anymore" - self.__schema.warn(msg, self._table, k, f._type) + self.__schema.debug(msg, self._table, k, f._type) if isinstance(f, fields.many2one): ref = self.pool.get(f._obj)._table