瀏覽代碼

Remove console leak (#4648)

Engel Nyst 1 年之前
父節點
當前提交
0ea5dcc781
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      openhands/core/logger.py

+ 0 - 3
openhands/core/logger.py

@@ -12,9 +12,6 @@ LOG_LEVEL = os.getenv('LOG_LEVEL', 'INFO').upper()
 DEBUG = os.getenv('DEBUG', 'False').lower() in ['true', '1', 'yes']
 if DEBUG:
     LOG_LEVEL = 'DEBUG'
-    import litellm
-
-    litellm.set_verbose = True
 
 LOG_TO_FILE = os.getenv('LOG_TO_FILE', 'False').lower() in ['true', '1', 'yes']
 DISABLE_COLOR_PRINTING = False