mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Fix a few build-time logging levels
This commit is contained in:
parent
c1df8b5bef
commit
9d59184d94
1 changed files with 3 additions and 3 deletions
|
|
@ -438,7 +438,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
||||||
logging.info("Scanning source for common problems...")
|
logging.info("Scanning source for common problems...")
|
||||||
buildprobs = common.scan_source(build_dir, root_dir, thisbuild)
|
buildprobs = common.scan_source(build_dir, root_dir, thisbuild)
|
||||||
if len(buildprobs) > 0:
|
if len(buildprobs) > 0:
|
||||||
logging.info('Scanner found %d problems:' % len(buildprobs))
|
logging.warn('Scanner found %d problems:' % len(buildprobs))
|
||||||
for problem in buildprobs:
|
for problem in buildprobs:
|
||||||
logging.info(' %s' % problem)
|
logging.info(' %s' % problem)
|
||||||
if not force:
|
if not force:
|
||||||
|
|
@ -913,13 +913,13 @@ def main():
|
||||||
build_dir = os.path.join('build', app['id'])
|
build_dir = os.path.join('build', app['id'])
|
||||||
|
|
||||||
# Set up vcs interface and make sure we have the latest code...
|
# Set up vcs interface and make sure we have the latest code...
|
||||||
logging.info("Getting {0} vcs interface for {1}".format(
|
logging.debug("Getting {0} vcs interface for {1}".format(
|
||||||
app['Repo Type'], app['Repo']))
|
app['Repo Type'], app['Repo']))
|
||||||
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir)
|
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir)
|
||||||
|
|
||||||
first = False
|
first = False
|
||||||
|
|
||||||
logging.info("Checking " + thisbuild['version'])
|
logging.debug("Checking " + thisbuild['version'])
|
||||||
if trybuild(app, thisbuild, build_dir, output_dir, also_check_dir,
|
if trybuild(app, thisbuild, build_dir, output_dir, also_check_dir,
|
||||||
srclib_dir, extlib_dir, tmp_dir, repo_dir, vcs, options.test,
|
srclib_dir, extlib_dir, tmp_dir, repo_dir, vcs, options.test,
|
||||||
options.server, options.force, options.onserver):
|
options.server, options.force, options.onserver):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue