[IMP] ir.sequence: tone down get_id() deprecation WARNING to DEBUG

For 6.1 we will still support get_id(), but should start phasing it
out for 6.2, so we will switch it back to WARNING after 6.1

bzr revid: odo@openerp.com-20111007145406-9rmfowimthedvoni
This commit is contained in:
Olivier Dony 2011-10-07 16:54:06 +02:00
parent d86c283434
commit f3cf4c359a
1 changed files with 2 additions and 1 deletions

View File

@ -222,7 +222,8 @@ class ir_sequence(openerp.osv.osv.osv):
argument, which can be a code or an id (as controlled by the
``code_or_id`` argument. This method is deprecated.
"""
_logger.warning("ir_sequence.get() and ir_sequence.get_id() are deprecated. "
# TODO: bump up to warning after 6.1 release
_logger.debug("ir_sequence.get() and ir_sequence.get_id() are deprecated. "
"Please use ir_sequence.next_by_code() or ir_sequence.next_by_id().")
if code_or_id == 'id':
return self.next_by_id(cr, uid, sequence_code_or_id, context)