Implement module level logging using the native Python logging library. For each module, a new child logger will be initialized in the __init__.py file and its configuration will be loaded by a corresponding yaml file. Each child logger will have a "pyfluent-" prefix to prevent conflicts with other loggers created by other pyansys libraries. The logging for pyfluent will be initialized upon import.
For more information regarding the native python module and how it can be integrated in a python project, refer to: https://docs.python.org/3/howto/logging-cookbook.html
Implement module level logging using the native Python logging library. For each module, a new child logger will be initialized in the
__init__.pyfile and its configuration will be loaded by a corresponding yaml file. Each child logger will have a "pyfluent-" prefix to prevent conflicts with other loggers created by other pyansys libraries. The logging for pyfluent will be initialized upon import.For more information regarding the native python module and how it can be integrated in a python project, refer to: https://docs.python.org/3/howto/logging-cookbook.html