Skip to content

Commit 83a74c8

Browse files
committed
Tweaked the messages from bin/rfc-editor-index-updates to be slightly more informative.
- Legacy-Id: 18278
1 parent 0a0df99 commit 83a74c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/bin/rfc-editor-index-updates

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ skip_date = datetime.date.today() - datetime.timedelta(days=365)
4545
if options.skip_date:
4646
skip_date = datetime.datetime.strptime(options.skip_date, "%Y-%m-%d").date()
4747

48-
log("Updating document metadata from RFC index from %s" % settings.RFC_EDITOR_INDEX_URL)
48+
log("Updating document metadata from RFC index going back to %s, from %s" % (skip_date, settings.RFC_EDITOR_INDEX_URL))
4949

5050

5151
socket.setdefaulttimeout(30)
@@ -68,7 +68,7 @@ for changes, doc, rfc_published in ietf.sync.rfceditor.update_docs_from_rfc_inde
6868
new_rfcs.append(doc)
6969

7070
for c in changes:
71-
log("%s: %s" % (doc.name, c))
71+
log("RFC%s, %s: %s" % (doc.rfcnum, doc.name, c))
7272

7373
sys.exit(0)
7474

0 commit comments

Comments
 (0)