summaryrefslogtreecommitdiff
path: root/sphinx/util/docutils.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-22 23:49:22 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-22 23:49:22 +0900
commita6868e0ca12bace469e7ac1d01e46f78acf3718a (patch)
tree91c8701016759ba4a4bf24618315d353d7eee7d3 /sphinx/util/docutils.py
parent8edae5fe2864450d1e7493844f1a8548eb317c9f (diff)
parent339717d8775d8d46b73628362d582a6e2849ca73 (diff)
downloadsphinx-git-a6868e0ca12bace469e7ac1d01e46f78acf3718a.tar.gz
Merge branch '2.x' into 3.x
Diffstat (limited to 'sphinx/util/docutils.py')
-rw-r--r--sphinx/util/docutils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py
index dc2dbfc0d..7069189e3 100644
--- a/sphinx/util/docutils.py
+++ b/sphinx/util/docutils.py
@@ -461,8 +461,6 @@ class SphinxTranslator(nodes.NodeVisitor):
for node_class in node.__class__.__mro__:
method = getattr(self, 'visit_%s' % (node_class.__name__), None)
if method:
- logger.debug('SphinxTranslator.dispatch_visit calling %s for %s',
- method.__name__, node)
method(node)
break
else:
@@ -480,8 +478,6 @@ class SphinxTranslator(nodes.NodeVisitor):
for node_class in node.__class__.__mro__:
method = getattr(self, 'depart_%s' % (node_class.__name__), None)
if method:
- logger.debug('SphinxTranslator.dispatch_departure calling %s for %s',
- method.__name__, node)
method(node)
break
else: