fastexport: downgrade message about already exported changesets to debug
The old warning level is just too noisy for incremental processing.
Differential Revision: https://phab.mercurial-scm.org/D8487
--- a/hgext/fastexport.py Sun Apr 26 14:29:47 2020 -0400
+++ b/hgext/fastexport.py Mon Apr 27 01:39:22 2020 +0200
@@ -80,7 +80,7 @@
ctx = repo[rev]
revid = ctx.hex()
if revid in marks:
- ui.warn(_(b"warning: revision %s already exported, skipped\n") % revid)
+ ui.debug(b"warning: revision %s already exported, skipped\n" % revid)
return
parents = [p for p in ctx.parents() if p.rev() != nullrev]
for p in parents: