summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-29 17:38:36 +0200
committerMattia Rizzolo <mattia@mapreri.org>2015-03-29 17:38:36 +0200
commit4f16fda1bd66cbff8eea2a33ec72484825c9a55a (patch)
tree46ffdc4829f42b10a7d3a8642707a4fe7b44d97c /bin/reproducible_html_notes.py
parent0eab6faefc17b5fab951485bad7bbc5a363dd56f (diff)
downloadjenkins.debian.net-4f16fda1bd66cbff8eea2a33ec72484825c9a55a.tar.xz
reproducible: html_notes: quiet down the output
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py6
1 files 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):