mirror of
https://github.com/element-hq/synapse.git
synced 2026-08-28 00:44:35 +00:00
use @wraps to set the __name__ __module__ and __doc__ correctly for logged functions
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
|
||||
|
||||
from inspect import getcallargs
|
||||
from functools import wraps
|
||||
|
||||
import logging
|
||||
|
||||
@@ -26,6 +27,7 @@ def log_function(f):
|
||||
lineno = f.func_code.co_firstlineno
|
||||
pathname = f.func_code.co_filename
|
||||
|
||||
@wraps(f)
|
||||
def wrapped(*args, **kwargs):
|
||||
name = f.__module__
|
||||
logger = logging.getLogger(name)
|
||||
|
||||
Reference in New Issue
Block a user