From 5173aa6c202ab460277ef20261a860071a49d999 Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Tue, 14 Oct 2025 19:44:59 +0800 Subject: [PATCH] feat(model-scanner): add logging for file processing, fixes #566 --- py/services/model_scanner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/py/services/model_scanner.py b/py/services/model_scanner.py index ade2498d..eedd953b 100644 --- a/py/services/model_scanner.py +++ b/py/services/model_scanner.py @@ -624,6 +624,7 @@ class ModelScanner: for i in range(0, len(new_files), batch_size): batch = new_files[i:i+batch_size] for path in batch: + logger.info(f"{self.model_type.capitalize()} Scanner: Processing {path}") try: # Find the appropriate root path for this file root_path = None