##// END OF EJS Templates
ui: unify argument name of ui.log()...
Yuya Nishihara -
r40714:c72a81bc default
parent child Browse files
Show More
@@ -1709,10 +1709,10 b' class ui(object):'
1709 '''exists only so low-level modules won't need to import scmutil'''
1709 '''exists only so low-level modules won't need to import scmutil'''
1710 return scmutil.progress(self, topic, unit, total)
1710 return scmutil.progress(self, topic, unit, total)
1711
1711
1712 def log(self, service, *msg, **opts):
1712 def log(self, event, *msg, **opts):
1713 '''hook for logging facility extensions
1713 '''hook for logging facility extensions
1714
1714
1715 service should be a readily-identifiable subsystem, which will
1715 event should be a readily-identifiable subsystem, which will
1716 allow filtering.
1716 allow filtering.
1717
1717
1718 *msg should be a newline-terminated format string to log, and
1718 *msg should be a newline-terminated format string to log, and
General Comments 0
You need to be logged in to leave comments. Login now