1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

[checkupdates] Tweak logging

- Increase severity of version mismatch.
- Don't log that the process is done.
This commit is contained in:
Jochen Sprickerhof 2021-10-10 10:48:04 +02:00 committed by Jochen Sprickerhof
parent 78eb2d94c4
commit 45a20ab365

View File

@ -203,7 +203,7 @@ def check_tags(app, pattern):
if hver:
if htag != tags[0]:
logging.info(
logging.warning(
"{appid}: latest tag {tag} does not contain highest version {version}".format(
appid=app.id, tag=tags[0], version=hver
)
@ -690,7 +690,6 @@ def main():
update_wiki(None, locallog)
status_update_json(processed, failed)
logging.info(_("Finished"))
sys.exit(exit_code)