This is an automated email from the ASF dual-hosted git repository.

sbp pushed a commit to branch sbp
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git


The following commit(s) were added to refs/heads/sbp by this push:
     new b4d000e  Make comparison logging less verbose
b4d000e is described below

commit b4d000e739ebf112f991503a77dadf026e9e2039
Author: Sean B. Palmer <[email protected]>
AuthorDate: Thu Feb 5 19:03:21 2026 +0000

    Make comparison logging less verbose
---
 atr/tasks/checks/compare.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/atr/tasks/checks/compare.py b/atr/tasks/checks/compare.py
index d1840ea..0df5ee4 100644
--- a/atr/tasks/checks/compare.py
+++ b/atr/tasks/checks/compare.py
@@ -206,7 +206,7 @@ async def _checkout_github_source(
         )
         return None
     elapsed_ms = (time.perf_counter_ns() - started_ns) / 1_000_000.0
-    log.info(
+    log.debug(
         "Cloned GitHub repo for compare.source_trees",
         repo_url=repo_url,
         sha=payload.sha,
@@ -323,7 +323,7 @@ async def _decompress_archive(
         )
         return False
     elapsed_ms = (time.perf_counter_ns() - started_ns) / 1_000_000.0
-    log.info(
+    log.debug(
         "Extracted source archive for compare.source_trees",
         archive_path=str(archive_path),
         extract_dir=str(extract_dir),
@@ -357,7 +357,7 @@ async def _find_archive_root(archive_path: pathlib.Path, 
extract_dir: pathlib.Pa
         return ArchiveRootResult(root=None, extra_entries=[])
     found_root = directories[0]
     extra_entries = [e for e in entries if (e != found_root) and (not 
e.startswith("._"))]
-    log.info(
+    log.debug(
         "Found archive root directory for compare.source_trees",
         archive_path=str(archive_path),
         extract_dir=str(extract_dir),


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to