Skip to content

Commit

Permalink
remove debug spam
Browse files Browse the repository at this point in the history
  • Loading branch information
nleach999 committed Sep 27, 2024
1 parent 37e9f14 commit 816e6b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestration/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async def __exec_scan(self, cxone_service : CxOneService, scm_service : SCMServi
with zipfile.ZipFile(zip_file, mode="w", compression=zipfile.ZIP_DEFLATED, compresslevel=9) as upload_payload:
zip_entries = OrchestratorBase.__get_path_dict(code_path)

OrchestratorBase.log().debug(f"[{clone_url}][{source_branch}][{source_hash}] zipping for scan: {zip_entries}")
OrchestratorBase.log().debug(f"[{clone_url}][{source_branch}][{source_hash}] zipped {len(zip_entries)} files for scan.")

for entry_key in zip_entries.keys():
upload_payload.write(entry_key, zip_entries[entry_key])
Expand Down

0 comments on commit 816e6b7

Please sign in to comment.