From 60957372fcb3a810f931443b3a8d7bbcbf1d4e2a Mon Sep 17 00:00:00 2001 From: geekan Date: Fri, 15 Dec 2023 11:36:24 +0800 Subject: [PATCH] tuning log level --- metagpt/config.py | 2 +- metagpt/team.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metagpt/config.py b/metagpt/config.py index d04da1d91..8ad42c99f 100644 --- a/metagpt/config.py +++ b/metagpt/config.py @@ -46,7 +46,7 @@ class Config(metaclass=Singleton): def __init__(self, yaml_file=default_yaml_file): self._init_with_config_files_and_env(yaml_file) - logger.info("Config loading done.") + logger.debug("Config loading done.") self._update() def _update(self): diff --git a/metagpt/team.py b/metagpt/team.py index e1b2a9ffc..a5c405f80 100644 --- a/metagpt/team.py +++ b/metagpt/team.py @@ -63,7 +63,7 @@ class Team(BaseModel): while n_round > 0: # self._save() n_round -= 1 - logger.info(f"max {n_round=} left.") + logger.debug(f"max {n_round=} left.") self._check_balance() await self.env.run() if CONFIG.git_repo: