0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-05 10:48:46 +02:00

Remove unnecessary logging

This commit is contained in:
Erik Johnston 2015-02-10 15:45:50 +00:00
parent 794fe2ca45
commit f8abbae99f

View file

@ -72,11 +72,7 @@ class StateHandler(object):
self._state_cache = {}
def f():
logger.debug("Pruning")
try:
self._prune_cache()
except:
logger.exception("Prune")
self._prune_cache()
self.clock.looping_call(f, 5*1000)
@ -400,7 +396,6 @@ class StateHandler(object):
return sorted(events, key=key_func)
def _prune_cache(self):
logger.debug("_prune_cache")
logger.debug(
"_prune_cache. before len: %d",
len(self._state_cache.keys())