From ebe7620b5f41521d95f1768ca295ef2f29dcb247 Mon Sep 17 00:00:00 2001 From: yangdx Date: Wed, 26 Mar 2025 23:24:26 +0800 Subject: [PATCH] Add pipeline_status endpoint to log filter --- lightrag/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/utils.py b/lightrag/utils.py index e493ea02..b397b710 100644 --- a/lightrag/utils.py +++ b/lightrag/utils.py @@ -75,7 +75,7 @@ class LightragPathFilter(logging.Filter): def __init__(self): super().__init__() # Define paths to be filtered - self.filtered_paths = ["/documents", "/health", "/webui/"] + self.filtered_paths = ["/documents", "/health", "/webui/", "/documents/pipeline_status"] # self.filtered_paths = ["/health", "/webui/"] def filter(self, record):