diff --git a/lightrag/utils.py b/lightrag/utils.py index 1525b6a4..b809de0c 100644 --- a/lightrag/utils.py +++ b/lightrag/utils.py @@ -145,7 +145,7 @@ class LightragPathFilter(logging.Filter): # Filter out successful GET requests to filtered paths if ( - method == "GET" + method == "GET" or method == "POST" and (status == 200 or status == 304) and path in self.filtered_paths ):