Skip to content

Commit 46cc6da

Browse files
Log scanning of ecosystems
This is helpful to see the scan progress, especially in large projects with lots of files, and also relevant for being able to effectively use the `--excluded-ecosystems` parameter.
1 parent e250d14 commit 46cc6da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

socketsecurity/core/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ def find_files(self, path: str) -> List[str]:
186186
for ecosystem in patterns:
187187
if ecosystem in self.config.excluded_ecosystems:
188188
continue
189+
log.info(f'Scanning ecosystem: {ecosystem}')
189190
ecosystem_patterns = patterns[ecosystem]
190191
for file_name in ecosystem_patterns:
191192
original_pattern = ecosystem_patterns[file_name]["pattern"]

0 commit comments

Comments
 (0)