我在禁用kedro日志方面没有成功。我尝试将disable_existing_loggers: True
添加到logging.yml文件以及disable:True
添加到所有现有日志,但它似乎仍在保存日志文件。有什么建议吗?
答案 0 :(得分:2)
如果您希望kedro
停止记录,则可以按照documentation覆盖_setup_logging
中ProjectContext
中的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
。