Skip to content

Commit 1eb3bde

Browse files
authored
remove unneeded message about config file not found (OpenHands#3158)
1 parent eb182f4 commit 1eb3bde

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

opendevin/core/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,8 +433,7 @@ def load_from_toml(cfg: AppConfig, toml_file: str = 'config.toml'):
433433
try:
434434
with open(toml_file, 'r', encoding='utf-8') as toml_contents:
435435
toml_config = toml.load(toml_contents)
436-
except FileNotFoundError as e:
437-
logger.opendevin_logger.info(f'Config file not found: {e}')
436+
except FileNotFoundError:
438437
return
439438
except toml.TomlDecodeError as e:
440439
logger.opendevin_logger.warning(

0 commit comments

Comments
 (0)