Change scanning logs from INFO to DEBUG level
This commit is contained in:
parent
845e914f1b
commit
dbeda8a9ff
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ class DocumentManager:
|
|||
"""Scan input directory for new files"""
|
||||
new_files = []
|
||||
for ext in self.supported_extensions:
|
||||
logging.info(f"Scanning for {ext} files in {self.input_dir}")
|
||||
logging.debug(f"Scanning for {ext} files in {self.input_dir}")
|
||||
for file_path in self.input_dir.rglob(f"*{ext}"):
|
||||
if file_path not in self.indexed_files:
|
||||
new_files.append(file_path)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue