mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 19:22:45 +01:00
Removed log.stat, it was dumb.
This commit is contained in:
parent
1193890c36
commit
c09a7cace1
@ -340,7 +340,6 @@ def tokenize(s, channel=None):
|
|||||||
start = time.time()
|
start = time.time()
|
||||||
try:
|
try:
|
||||||
ret = Tokenizer(brackets=brackets,pipe=pipe,quotes=quotes).tokenize(s)
|
ret = Tokenizer(brackets=brackets,pipe=pipe,quotes=quotes).tokenize(s)
|
||||||
log.stat('tokenize took %s seconds.' % (time.time() - start))
|
|
||||||
return ret
|
return ret
|
||||||
except ValueError, e:
|
except ValueError, e:
|
||||||
raise SyntaxError, str(e)
|
raise SyntaxError, str(e)
|
||||||
@ -1065,7 +1064,6 @@ class Commands(object):
|
|||||||
self.log.debug('Error return: %s', utils.gen.exnToString(e))
|
self.log.debug('Error return: %s', utils.gen.exnToString(e))
|
||||||
irc.error(str(e))
|
irc.error(str(e))
|
||||||
elapsed = time.time() - start
|
elapsed = time.time() - start
|
||||||
log.stat('%s took %s seconds', name, elapsed)
|
|
||||||
|
|
||||||
def getCommandHelp(self, name):
|
def getCommandHelp(self, name):
|
||||||
name = canonicalName(name)
|
name = canonicalName(name)
|
||||||
|
@ -222,11 +222,6 @@ conf.registerGlobalValue(conf.supybot.log, 'level',
|
|||||||
LogLevel(logging.INFO, """Determines what the minimum priority level logged
|
LogLevel(logging.INFO, """Determines what the minimum priority level logged
|
||||||
will be. Valid values are DEBUG, INFO, WARNING, ERROR,
|
will be. Valid values are DEBUG, INFO, WARNING, ERROR,
|
||||||
and CRITICAL, in order of increasing priority."""))
|
and CRITICAL, in order of increasing priority."""))
|
||||||
conf.registerGlobalValue(conf.supybot.log, 'statistics',
|
|
||||||
ValidLogLevel(-1, """Determines what level statistics reporting
|
|
||||||
is to be logged at. Mostly, this just includes, for instance, the time it
|
|
||||||
took to parse a message, process a command, etc. You probably don't care
|
|
||||||
about this."""))
|
|
||||||
conf.registerGlobalValue(conf.supybot.log, 'timestampFormat',
|
conf.registerGlobalValue(conf.supybot.log, 'timestampFormat',
|
||||||
registry.String('%Y-%m-%dT%H:%M:%S', """Determines the format string for
|
registry.String('%Y-%m-%dT%H:%M:%S', """Determines the format string for
|
||||||
timestamps in logfiles. Refer to the Python documentation for the time
|
timestamps in logfiles. Refer to the Python documentation for the time
|
||||||
@ -278,10 +273,6 @@ exception = _logger.exception
|
|||||||
registry.error = error
|
registry.error = error
|
||||||
registry.exception = exception
|
registry.exception = exception
|
||||||
|
|
||||||
def stat(*args):
|
|
||||||
level = conf.supybot.log.statistics()
|
|
||||||
_logger.log(level, *args)
|
|
||||||
|
|
||||||
setLevel = _logger.setLevel
|
setLevel = _logger.setLevel
|
||||||
|
|
||||||
atexit.register(logging.shutdown)
|
atexit.register(logging.shutdown)
|
||||||
|
Loading…
Reference in New Issue
Block a user