Removed debug messages

This commit is contained in:
Griatch 2015-03-09 15:47:29 +01:00
parent 950922d699
commit 1fdd83f7a7

View file

@ -107,15 +107,12 @@ def _server_maintenance():
if _MAINTENANCE_COUNT % 300 == 0:
# check cache size every 5 minutes
print "maintenance: check flush cache..."
_FLUSH_CACHE(_IDMAPPER_CACHE_MAXSIZE)
if _MAINTENANCE_COUNT % 3600 == 0:
# validate scripts every hour
print "maintenance: validate scripts..."
evennia.ScriptDB.objects.validate()
if _MAINTENANCE_COUNT % 3700 == 0:
# validate channels off-sync with scripts
print "maintenance: validate channels..."
evennia.CHANNEL_HANDLER.update()
## Commenting this out, it is probably not needed
## with CONN_MAX_AGE set. Keeping it as a reminder