From: Daniel Martí Date: Mon, 30 Jun 2014 14:34:26 +0000 (+0200) Subject: Report the vercode as well as the version name when building X-Git-Tag: 0.2.1~83 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fdb53b75f442a1fa4658a8abdda1566c460dcb21;p=fdroidserver.git Report the vercode as well as the version name when building --- diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 98f698a8..ee14fa65 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -892,7 +892,8 @@ def trybuild(app, thisbuild, build_dir, output_dir, also_check_dir, srclib_dir, if thisbuild['disable']: return False - logging.info("Building version " + thisbuild['version'] + ' of ' + app['id']) + logging.info("Building version %s (%s) of %s" % ( + thisbuild['version'], thisbuild['vercode'], app['id'])) if server: # When using server mode, still keep a local cache of the repo, by