mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-03 01:39:23 +01:00
Make log.firewall display the callback name in any case.
This commit is contained in:
parent
4647ed81fd
commit
f22f0bb4b6
@ -346,9 +346,10 @@ def firewall(f, errorHandler=None):
|
|||||||
if s is None:
|
if s is None:
|
||||||
s = 'Uncaught exception'
|
s = 'Uncaught exception'
|
||||||
if hasattr(self, 'log'):
|
if hasattr(self, 'log'):
|
||||||
self.log.exception('%s:', s)
|
logging_function = self.log.exception
|
||||||
else:
|
else:
|
||||||
exception('%s in %s.%s:', s, self.__class__.__name__, f.func_name)
|
logging_function = exception
|
||||||
|
logging_function('%s in %s.%s:', s, self.__class__.__name__, f.func_name)
|
||||||
def m(self, *args, **kwargs):
|
def m(self, *args, **kwargs):
|
||||||
try:
|
try:
|
||||||
return f(self, *args, **kwargs)
|
return f(self, *args, **kwargs)
|
||||||
|
Loading…
Reference in New Issue
Block a user