2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from functools import wraps
|
|
|
|
from inspect import getcallargs
|
2021-10-27 12:27:23 -04:00
|
|
|
from typing import Callable, TypeVar, cast
|
2015-01-06 10:22:28 -05:00
|
|
|
|
|
|
|
_TIME_FUNC_ID = 0
|
|
|
|
|
|
|
|
|
|
|
|
def _log_debug_as_f(f, msg, msg_args):
|
|
|
|
name = f.__module__
|
|
|
|
logger = logging.getLogger(name)
|
|
|
|
|
|
|
|
if logger.isEnabledFor(logging.DEBUG):
|
2020-05-15 14:17:06 -04:00
|
|
|
lineno = f.__code__.co_firstlineno
|
|
|
|
pathname = f.__code__.co_filename
|
2015-01-06 10:22:28 -05:00
|
|
|
|
2020-09-08 09:52:51 -04:00
|
|
|
record = logger.makeRecord(
|
2015-01-06 10:22:28 -05:00
|
|
|
name=name,
|
|
|
|
level=logging.DEBUG,
|
2020-09-08 09:52:51 -04:00
|
|
|
fn=pathname,
|
|
|
|
lno=lineno,
|
2015-01-06 10:22:28 -05:00
|
|
|
msg=msg,
|
|
|
|
args=msg_args,
|
2019-06-20 05:32:02 -04:00
|
|
|
exc_info=None,
|
2015-01-06 10:22:28 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
logger.handle(record)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2021-10-27 12:27:23 -04:00
|
|
|
F = TypeVar("F", bound=Callable)
|
|
|
|
|
|
|
|
|
|
|
|
def log_function(f: F) -> F:
|
2021-02-16 17:32:34 -05:00
|
|
|
"""Function decorator that logs every call to that function."""
|
2014-08-12 10:10:52 -04:00
|
|
|
func_name = f.__name__
|
|
|
|
|
2014-08-28 09:56:03 -04:00
|
|
|
@wraps(f)
|
2014-08-12 10:10:52 -04:00
|
|
|
def wrapped(*args, **kwargs):
|
|
|
|
name = f.__module__
|
|
|
|
logger = logging.getLogger(name)
|
|
|
|
level = logging.DEBUG
|
|
|
|
|
|
|
|
if logger.isEnabledFor(level):
|
|
|
|
bound_args = getcallargs(f, *args, **kwargs)
|
|
|
|
|
|
|
|
def format(value):
|
|
|
|
r = str(value)
|
|
|
|
if len(r) > 50:
|
|
|
|
r = r[:50] + "..."
|
|
|
|
return r
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
func_args = ["%s=%s" % (k, format(v)) for k, v in bound_args.items()]
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
msg_args = {"func_name": func_name, "args": ", ".join(func_args)}
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
_log_debug_as_f(f, "Invoked '%(func_name)s' with args: %(args)s", msg_args)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
|
2014-08-28 09:58:51 -04:00
|
|
|
wrapped.__name__ = func_name
|
2021-10-27 12:27:23 -04:00
|
|
|
return cast(F, wrapped)
|