##// END OF EJS Templates
blackbox: log incoming changes via ui.log()...
Durham Goode -
r18672:b2b4ddc5 default
parent child Browse files
Show More
@@ -2399,6 +2399,12 b' class localrepository(object):'
2399 for n in added:
2399 for n in added:
2400 self.hook("incoming", node=hex(n), source=srctype,
2400 self.hook("incoming", node=hex(n), source=srctype,
2401 url=url)
2401 url=url)
2402
2403 heads = self.heads()
2404 self.ui.log("incoming",
2405 _("%s incoming changes - new heads: %s\n"),
2406 len(added),
2407 ', '.join([hex(c[:6]) for c in heads]))
2402 self._afterlock(runhooks)
2408 self._afterlock(runhooks)
2403
2409
2404 finally:
2410 finally:
General Comments 0
You need to be logged in to leave comments. Login now