chiark / gitweb /
checkupdates: be more verbose with tags
authorDaniel Martí <mvdan@mvdan.cc>
Mon, 24 Aug 2015 23:24:05 +0000 (16:24 -0700)
committerDaniel Martí <mvdan@mvdan.cc>
Mon, 24 Aug 2015 23:24:05 +0000 (16:24 -0700)
fdroidserver/checkupdates.py

index 2a3c45f8cef028d458c59ca52400ad0c4e05d494..494a18342c1597659e078966388a902db4e13994 100644 (file)
@@ -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)