feat(model-scanner): add logging for file processing, fixes #566

This commit is contained in:
Will Miao
2025-10-14 19:44:59 +08:00
parent 3d98572a62
commit 5173aa6c20

View File

@@ -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