From eff2adaafcd54d755d789fe6e5e03d8d45c9ebbb Mon Sep 17 00:00:00 2001 From: filmroellchen Date: Tue, 28 Jan 2025 11:25:18 +0100 Subject: [PATCH] disable debug logging on CI again --- verify.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/verify.py b/verify.py index a990987..9778e24 100755 --- a/verify.py +++ b/verify.py @@ -30,7 +30,6 @@ def collect_user_dirs(): def last_commit_for(dir: Path, ref: git.Reference): """Returns the Git commit signature for the last commit on this path.""" last_commit_hash = str(ref.repo.git.rev_list("--max-count=1", action_ref, dir)) - log.debug(last_commit_hash) return ref.repo.commit(last_commit_hash) @@ -110,7 +109,7 @@ def main(): logging.basicConfig( style="{", format="[{levelname:8}] {message}", - level=logging.DEBUG #logging.INFO if is_ci else logging.DEBUG, + level=logging.INFO if is_ci else logging.DEBUG, ) chdir(env.get("GITHUB_WORKSPACE", default=".")) if is_ci: