summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-18 13:47:56 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-18 13:47:56 +0100
commit7d309ddf5cf9a840c495f9954a2ba790015b5b03 (patch)
tree0e1df93471c1f1d9813a8521ef7693789c51e0b9 /bin
parenta54d0a035907e9a7175f9a98f0fb2b8fbb145c45 (diff)
downloadjenkins.debian.net-7d309ddf5cf9a840c495f9954a2ba790015b5b03.tar.xz
reproducible: turn two more log.info calls into log.debug
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_indexes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py
index e8ac6ae3..3e3d550c 100755
--- a/bin/reproducible_html_indexes.py
+++ b/bin/reproducible_html_indexes.py
@@ -334,11 +334,11 @@ def build_page(page, suite=None, arch=None):
'building a suite-specific page.')
sys.exit(1)
if not suite: # global page
- log.info('Building the ' + page + ' global index page...')
+ log.debug('Building the ' + page + ' global index page...')
page_sections = global_pages[page]['body']
title = global_pages[page]['title']
else:
- log.info('Building the ' + page + ' index page for ' + suite + '/' +
+ log.debug('Building the ' + page + ' index page for ' + suite + '/' +
arch + '...')
page_sections = pages[page]['body']
title = pages[page]['title'].format(suite=suite, arch=arch)