From 16c832bd626080ba07d5b22bc8393770d17fcc77 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 7 Aug 2004 00:58:45 +0000 Subject: [PATCH] Do we really need the timestamp here? --- src/world.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/world.py b/src/world.py index d149a91b8..6ba5d1020 100644 --- a/src/world.py +++ b/src/world.py @@ -127,11 +127,11 @@ def upkeep(scheduleNext=True): log.debug('Pattern cache size: %s'%len(ircutils._patternCache)) log.debug('HostmaskPatternEqual cache size: %s' % len(ircutils._hostmaskPatternEqualCache)) - timestamp = log.timestamp() + #timestamp = log.timestamp() if flushed: - log.info('%s Flushers flushed and garbage collected.', timestamp) + log.info('Flushers flushed and garbage collected.') else: - log.info('%s Garbage collected.', timestamp) + log.info('Garbage collected.') if scheduleNext: schedule.addEvent(upkeep, time.time() + conf.supybot.upkeepInterval()) collected = gc.collect()