From 4f16fda1bd66cbff8eea2a33ec72484825c9a55a Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Sun, 29 Mar 2015 17:38:36 +0200 Subject: reproducible: html_notes: quiet down the output --- bin/reproducible_html_notes.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 2ecad664..5046e836 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -340,8 +340,9 @@ def iterate_over_notes(notes): noheader=True) desturl = REPRODUCIBLE_URL + NOTES_URI + '/' + package + '_note.html' - log.info("Note created: " + desturl) + log.debug("Note created: " + desturl) i = i + 1 + log.info('Created ' + str(i) + ' note pages.') def iterate_over_issues(issues): @@ -359,8 +360,9 @@ def iterate_over_issues(issues): style_note=True) desturl = REPRODUCIBLE_URL + ISSUES_URI + '/' + suite + '/' + issue + '_issue.html' - log.info("Issue created: " + desturl) + log.debug("Issue created: " + desturl) i = i + 1 + log.info('Created ' + str(i) + ' issue pages for ' + suite) def sort_issues(issue): -- cgit v1.2.3-54-g00ecf