[FIX] changed a warning to a debug

bzr revid: fp@tinyerp.com-20110114183657-3mdz433zn2wlx2s8
This commit is contained in:
Fabien Pinckaers 2011-01-14 19:36:57 +01:00
parent b8ca64c69d
commit cbca1196b4
1 changed files with 1 additions and 1 deletions

View File

@ -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