We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38088f7 commit 82b4177Copy full SHA for 82b4177
1 file changed
src/murfey/client/watchdir.py
@@ -250,7 +250,7 @@ def _scan_directory(
250
pattern in entry.name
251
for pattern in self._substrings_blacklist.get("directories", [])
252
):
253
- log.debug(f"Skipping blacklisted directory {str(entry.name)!r}")
+ # log.debug(f"Skipping blacklisted directory {str(entry.name)!r}")
254
continue
255
elif entry.is_dir() and (
256
modification_time is None or entry.stat().st_ctime >= modification_time
@@ -265,7 +265,7 @@ def _scan_directory(
265
266
for pattern in self._substrings_blacklist.get("files", [])
267
268
- log.debug(f"Skipping blacklisted file {str(entry.name)!r}")
+ # log.debug(f"Skipping blacklisted file {str(entry.name)!r}")
269
270
# Get file statistics and append file to dictionary
271
try:
0 commit comments