mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-08 03:59:23 +01:00
Added supybot.reply.detailedErrors.
This commit is contained in:
parent
e88f2e5ba5
commit
e8bba56f1f
@ -423,10 +423,10 @@ class IrcObjectProxy(RichReplyMethods):
|
|||||||
self.error(str(e))
|
self.error(str(e))
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
cb.log.exception('Uncaught exception:')
|
cb.log.exception('Uncaught exception:')
|
||||||
# TODO: Configuration variable for this detailed error. Users
|
if conf.supybot.reply.detailedErrors():
|
||||||
# should be able to specify that a plain error message get
|
|
||||||
# returned.
|
|
||||||
self.error(utils.exnToString(e))
|
self.error(utils.exnToString(e))
|
||||||
|
else:
|
||||||
|
self.replyError()
|
||||||
|
|
||||||
def finalEval(self):
|
def finalEval(self):
|
||||||
assert not self.finalEvaled, 'finalEval called twice.'
|
assert not self.finalEvaled, 'finalEval called twice.'
|
||||||
@ -815,7 +815,10 @@ class PrivmsgRegexp(Privmsg):
|
|||||||
# We catch exceptions here because IrcObjectProxy isn't doing our
|
# We catch exceptions here because IrcObjectProxy isn't doing our
|
||||||
# dirty work for us anymore.
|
# dirty work for us anymore.
|
||||||
self.log.exception('Uncaught exception from callCommand:')
|
self.log.exception('Uncaught exception from callCommand:')
|
||||||
|
if conf.supybot.reply.detailedErrors():
|
||||||
irc.error(utils.exnToString(e))
|
irc.error(utils.exnToString(e))
|
||||||
|
else:
|
||||||
|
irc.replyError()
|
||||||
|
|
||||||
def doPrivmsg(self, irc, msg):
|
def doPrivmsg(self, irc, msg):
|
||||||
if Privmsg.errored:
|
if Privmsg.errored:
|
||||||
@ -863,7 +866,10 @@ class PrivmsgCommandAndRegexp(Privmsg):
|
|||||||
except Exception, e:
|
except Exception, e:
|
||||||
if 'catchErrors' in kwargs and kwargs['catchErrors']:
|
if 'catchErrors' in kwargs and kwargs['catchErrors']:
|
||||||
self.log.exception('Uncaught exception in callCommand:')
|
self.log.exception('Uncaught exception in callCommand:')
|
||||||
|
if conf.supybot.reply.detailedErrors():
|
||||||
irc.error(utils.exnToString(e))
|
irc.error(utils.exnToString(e))
|
||||||
|
else:
|
||||||
|
irc.replyError()
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
@ -163,6 +163,10 @@ the bot will send multi-message replies in a single messsage or in multiple
|
|||||||
messages. For safety purposes (so the bot can't possibly flood) it will
|
messages. For safety purposes (so the bot can't possibly flood) it will
|
||||||
normally send everything in a single message."""))
|
normally send everything in a single message."""))
|
||||||
|
|
||||||
|
supybot.reply.register('detailedErrors', registry.Boolean(True, """Determines
|
||||||
|
whether error messages that result from bugs in the bot will show a detailed
|
||||||
|
error message (the uncaught exception) or a generic error message."""))
|
||||||
|
|
||||||
supybot.reply.register('errorInPrivate', registry.Boolean(False, """
|
supybot.reply.register('errorInPrivate', registry.Boolean(False, """
|
||||||
Determines whether the bot will send error messages to users in private."""))
|
Determines whether the bot will send error messages to users in private."""))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user