Skip to content

Class swarmauri_core.logger_handlers.IHandler.IHandler

swarmauri_core.logger_handlers.IHandler.IHandler

Bases: ABC

compile_handler abstractmethod

compile_handler()

Compiles and returns a logging.Handler instance.

Source code in swarmauri_core/logger_handlers/IHandler.py
 6
 7
 8
 9
10
11
@abstractmethod
def compile_handler(self) -> logging.Handler:
    """
    Compiles and returns a logging.Handler instance.
    """
    pass