[Updated] D8487: fastexport: downgrade message about already exported changesets to debug
joerg.sonnenberger (Joerg Sonnenberger)
phabricator at mercurial-scm.org
Thu May 7 15:02:36 UTC 2020
Closed by commit rHGb1804c62b2c0: fastexport: downgrade message about already exported changesets to debug (authored by joerg.sonnenberger).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D8487?vs=21234&id=21285
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D8487/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D8487
AFFECTED FILES
hgext/fastexport.py
CHANGE DETAILS
diff --git a/hgext/fastexport.py b/hgext/fastexport.py
--- a/hgext/fastexport.py
+++ b/hgext/fastexport.py
@@ -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:
To: joerg.sonnenberger, #hg-reviewers, marmoute
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20200507/46608bc1/attachment-0001.html>
More information about the Mercurial-patches
mailing list