def log_func_implementation_found_or_not()

in src/sagemaker_huggingface_inference_toolkit/handler_service.py [0:0]


    def log_func_implementation_found_or_not(func, func_name):
        if func is not None:
            logger.info("`{}` implementation found. It will be used in place of the default one.".format(func_name))
        else:
            logger.info(
                "No `{}` implementation was found. The default one from the handler service will be used.".format(
                    func_name
                )
            )