PySpeosCustomAdapter
#
- class ansys.speos.core.logger.PySpeosCustomAdapter(logger, extra=None)#
Bases:
logging.LoggerAdapter
Keeps the reference to the speos instance name dynamic.
If we use the standard approach, which is supplying extra input to the logger, we would need to keep inputing speos instances every time we do a log. Using adapters, we only need to specify the speos instance that we are referring to once.
Overview#
Process extra Arguments. |
|
Add a file handler to the logger. |
|
Add a standard output handler to the logger. |
|
Change the log level of the object and the attached handlers. |
Import detail#
from ansys.speos.core.logger import PySpeosCustomAdapter
Attribute detail#
- PySpeosCustomAdapter.level = None#
- PySpeosCustomAdapter.file_handler = None#
- PySpeosCustomAdapter.stdout_handler = None#
- PySpeosCustomAdapter.logger#
- PySpeosCustomAdapter.std_out_handler#
Method detail#
- PySpeosCustomAdapter.process(msg, kwargs)#
Process extra Arguments.
- PySpeosCustomAdapter.log_to_file(filename=FILE_NAME, level=LOG_LEVEL)#
Add a file handler to the logger.