From 8ec3a2a3dbbf4388ad20bde83e1a08edd66fb93d Mon Sep 17 00:00:00 2001 From: proletarius101 Date: Tue, 4 Jun 2024 22:04:38 +0800 Subject: [PATCH] chore(deploy): cleanup code --- fdroidserver/deploy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fdroidserver/deploy.py b/fdroidserver/deploy.py index 64b19406..6f0a3a08 100644 --- a/fdroidserver/deploy.py +++ b/fdroidserver/deploy.py @@ -783,7 +783,6 @@ def upload_to_servergitmirror( local_repo.create_remote(name, remote_url) logging.info('Mirroring to: ' + remote_url) - logging.info("git status:", local_repo.git.status()) if is_index_only: local_repo.index.add( _get_index_file_paths(os.path.join('fdroid', repo_section)) @@ -830,7 +829,7 @@ def upload_to_servergitmirror( local_repo.index.add(['.gitlab-ci.yml']) local_repo.index.commit("fdroidserver git-mirror: Deploy to GitLab Pages") - logging.info(_('Pushing to {url}').format(url=remote.url)) + logging.debug(_('Pushing to {url}').format(url=remote.url)) with local_repo.git.custom_environment(GIT_SSH_COMMAND=ssh_cmd): pushinfos = remote.push( f"{local_branch_name}:{remote_branch_name}",