Selaa lähdekoodia

fix: Remove useless debug information. (#7647)

Zhi 8 kuukautta sitten
vanhempi
commit
b7ff98d7ff
1 muutettua tiedostoa jossa 0 lisäystä ja 1 poistoa
  1. 0 1
      api/core/tools/utils/yaml_utils.py

+ 0 - 1
api/core/tools/utils/yaml_utils.py

@@ -26,7 +26,6 @@ def load_yaml_file(file_path: str, ignore_error: bool = True, default_value: Any
                 raise YAMLError(f'Failed to load YAML file {file_path}: {e}')
     except Exception as e:
         if ignore_error:
-            logger.debug(f'Failed to load YAML file {file_path}: {e}')
             return default_value
         else:
             raise e