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 function1():
do_stuff()
Is there anyway I can use autologging to log all these function calls? I believe from the docs the @logged and @traced only work on class or method level?
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.
Is there anyway I can use
autologgingto log all these function calls? I believe from the docs the@loggedand@tracedonly work on class or method level?