0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-12-14 16:43:53 +01:00

Fix typo where we used wrong var.

This commit is contained in:
Erik Johnston 2015-01-06 16:05:01 +00:00
parent fd9a8db7ea
commit d5ae67e67d

View file

@ -102,7 +102,7 @@ def time_function(f):
_log_debug_as_f(
f,
"[FUNC START] {%s-%d}",
(func_name, _TIME_FUNC_ID),
(func_name, id),
)
r = f(*args, **kwargs)
@ -111,7 +111,7 @@ def time_function(f):
_log_debug_as_f(
f,
"[FUNC END] {%s-%d} %f",
(func_name, _TIME_FUNC_ID, end-start,),
(func_name, id, end-start,),
)
return r