From: Daniel Martí Date: Mon, 24 Aug 2015 23:24:05 +0000 (-0700) Subject: checkupdates: be more verbose with tags X-Git-Tag: 0.5.0~182 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0fb7acdd1d51e55b11e10afc60304f59730ed470;p=fdroidserver.git checkupdates: be more verbose with tags --- diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index 2a3c45f8..494a1834 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -130,9 +130,11 @@ def check_tags(app, pattern): hcode = "0" tags = vcs.gettags() + logging.debug("All tags: " + ','.join(tags)) if pattern: pat = re.compile(pattern) tags = [tag for tag in tags if pat.match(tag)] + logging.debug("Matching tags: " + ','.join(tags)) if repotype in ('git',): tags = vcs.latesttags(tags, 5)