Merge pull request #7344 from tk0miya/7343_debug_log

Fix #7343: Sphinx builds has been slower since 2.4.0 on debug mode
This commit is contained in:
Takeshi KOMIYA 2020-03-21 20:59:29 +09:00 committed by GitHub
commit c4b7189978
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -16,6 +16,8 @@ Features added
Bugs fixed
----------
* #7343: Sphinx builds has been slower since 2.4.0 on debug mode
Testing
--------

View File

@ -479,8 +479,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)
return method(node)
else:
super().dispatch_visit(node)
@ -497,8 +495,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)
return method(node)
else:
super().dispatch_departure(node)