generate/delete refcount: warning->debug (no use spamming for now)

This commit is contained in:
Darren Ranalli 2009-02-04 19:50:48 +00:00
parent 67af3d6256
commit 0c4fdfe262
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ class DistributedObjectAI(DistributedObjectBase):
"""
self.__generates -= 1
if self.__generates < 0:
self.notify.warning('DistributedObjectAI: delete() called more times than generate()')
self.notify.debug('DistributedObjectAI: delete() called more times than generate()')
if self.__generates == 0:
# prevent this code from executing multiple times
if self.air is not None:

View File

@ -93,7 +93,7 @@ class DistributedObjectUD(DistributedObjectBase):
"""
self.__generates -= 1
if self.__generates < 0:
self.notify.warning('DistributedObjectUD: delete() called more times than generate()')
self.notify.debug('DistributedObjectUD: delete() called more times than generate()')
if self.__generates == 0:
# prevent this code from executing multiple times
if self.air is not None: