Autologging icon indicating copy to clipboard operation
Autologging copied to clipboard

Autologging automates logging setup and method tracing for Python classes.

Results 5 Autologging issues
Sort by recently updated
recently updated
newest added

When an exception occurs, tracing is not closed and nothing is logged. The log file just abruptly ends. I would suggest 1. Produce a logging.ERROR event with the exception message...

With the current behavior of `@traced`, the log message produced when entering or exiting a traced function uses the format specifier `%r` to print the args/kwargs inputs to the function...

Opening this issue as a consolidation of [issues/8](https://github.com/mzipay/Autologging/issues/8) and [issues/10](https://github.com/mzipay/Autologging/issues/10). Coroutine tracing support is slated for release 2.0.0 (forthcoming). The plan is to release 1.3.2 and 2.0.0 simultaneously. Release 1.3.2...

enhancement

Hi, I am dealing with a fairly large somewhat older python django project which mainly consists of python files with lots of functions without any Classes. ``` import os def...

If cached property is used the following warning is raised ``` else: # should be unreachable, but issue a warning just in case warnings.warn("tracing not supported for %r" % descriptor_type)...