I'm using python version 3.6.8.
I'm looking at large python project. In beginning of __init__.py, there is following statement:
Logger = logging.getLoggerClass()
Open in new window
Is getLoggerClass a class? Is above code instantiating this class?
What is the purpose of above code?