Skip to content

Commit 4b378e6

Browse files
Add more info-level logs
This helps tracking progress in CI
1 parent 46cc6da commit 4b378e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

socketsecurity/core/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def find_files(self, path: str) -> List[str]:
209209
glob_end = time.time()
210210
log.debug(f"Globbing took {glob_end - glob_start:.4f} seconds")
211211

212-
log.debug(f"Total files found: {len(files)}")
212+
log.info(f"Total files found: {len(files)}")
213213
return sorted(files)
214214

215215
def get_supported_patterns(self) -> Dict:
@@ -323,7 +323,7 @@ def create_full_scan(self, files: List[str], params: FullScanParams, has_head_sc
323323
Returns:
324324
FullScan object with scan results
325325
"""
326-
log.debug("Creating new full scan")
326+
log.info("Creating new full scan")
327327
create_full_start = time.time()
328328

329329
res = self.sdk.fullscans.post(files, params, use_types=True)

0 commit comments

Comments
 (0)