소스 검색

ensure error message with missing config is printed

Blake Blackshear 4 년 전
부모
커밋
11016b8486
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frigate/app.py

+ 1 - 1
frigate/app.py

@@ -202,7 +202,7 @@ class FrigateApp():
             try:
                 self.init_config()
             except Exception as e:
-                logger.error(f"Error parsing config: {e}")
+                print(f"Error parsing config: {e}")
                 self.log_process.terminate()
                 sys.exit(1)
             self.set_environment_vars()