mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
build: raise VCS client version logging level
Debug logging is not saved in buildserver logs. Also move this line into build.py's main() to avoid duplication: common.setup_vcs(app) may be called from parse_metadata() too.
This commit is contained in:
parent
349bcb0e8e
commit
cd8a86a2a2
2 changed files with 1 additions and 1 deletions
|
@ -1156,6 +1156,7 @@ def main():
|
|||
# there are any.
|
||||
if first:
|
||||
vcs, build_dir = common.setup_vcs(app)
|
||||
logging.info("Using %s" % vcs.clientversion())
|
||||
first = False
|
||||
|
||||
logging.debug("Checking " + build.versionName)
|
||||
|
|
|
@ -623,7 +623,6 @@ def setup_vcs(app):
|
|||
else:
|
||||
remote = app.Repo
|
||||
vcs = getvcs(app.RepoType, remote, build_dir)
|
||||
logging.debug("Using %s" % vcs.clientversion())
|
||||
|
||||
return vcs, build_dir
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue