[PATCH 5 of 5] blackbox: trap warnings

timeless timeless at mozdev.org
Fri Mar 11 12:43:57 EST 2016


# HG changeset patch
# User timeless <timeless at mozdev.org>
# Date 1455219585 0
#      Thu Feb 11 19:39:45 2016 +0000
# Node ID 526299cd2c430aed88799ab28b25dcda8d22290b
# Parent  1a7bc043788ab7933dc46b6c9780a9dde0eed455
blackbox: trap warnings

diff --git a/hgext/blackbox.py b/hgext/blackbox.py
--- a/hgext/blackbox.py
+++ b/hgext/blackbox.py
@@ -189,6 +189,11 @@
                 if not lastui or ui._bbrepo:
                     lastui = ui
 
+        def warn(self, *msg, **opts):
+            super(blackboxui, self).warn(*msg, **opts)
+            output = ''.join(msg)
+            self.log("blackboxwarn", "%s\n", output)
+
         def setrepo(self, repo):
             self._bbfp = None
             self._bbrepo = repo


More information about the Mercurial-devel mailing list