Only print properties in verbose mode

Only print the properties out if verbose is requested.

Change-Id: I82a04a787a42aeedc75607639154706c0847ac5d
This commit is contained in:
Andreas Jaeger 2014-05-13 20:36:22 -04:00
parent 70fb1ca1fc
commit a79e547a5b
1 changed files with 3 additions and 2 deletions

View File

@ -1386,8 +1386,9 @@ def handle_options():
if CONF.check_build:
read_properties()
print(" Release path: %s" % cfg.CONF.release_path)
print(" Comments enabled: %s" % cfg.CONF.comments_enabled)
if CONF.verbose:
print(" Release path: %s" % cfg.CONF.release_path)
print(" Comments enabled: %s" % cfg.CONF.comments_enabled)
def main():