如何在Kedro中禁用日志

时间:2019-11-07 14:40:28

标签: python kedro

我在禁用kedro日志方面没有成功。我尝试将disable_existing_loggers: True添加到logging.yml文件以及disable:True添加到所有现有日志,但它似乎仍在保存日志文件。有什么建议吗?

1 个答案:

答案 0 :(得分:2)

如果您希望kedro停止记录,则可以按照documentation覆盖_setup_loggingProjectContext中的src/<package-name>/run.py。例如:

class ProjectContext(KedroContext):
    """Users can override the remaining methods from the parent class here, or create new ones
    (e.g. as required by plugins)

    """

    project_name = "<PACKGE-NAME>"
    project_version = "0.15.4"

    def _get_pipelines(self) -> Dict[str, Pipeline]:
        return create_pipelines()

    def _setup_logging(self) -> None:
        import logging
        logging.disable()

如果您希望它仍然登录到控制台,但不保存到logs/info.log,则可以执行def _setup_logging(self) -> None: pass