Skip to content

Commit 7a3b8a8

Browse files
committed
Remove unreasonably search indexing output
1 parent de9a3c5 commit 7a3b8a8

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

readthedocs/search/parse_json.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ def generate_sections_from_pyquery(body):
8888
'title': title,
8989
'content': content,
9090
}
91-
log.debug("(Search Index) Section [%s:%s]: %s",
92-
section_id, title, content)
9391

9492

9593
def process_file(filename):

readthedocs/search/utils.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,6 @@ def parse_sphinx_sections(content):
212212
'title': title,
213213
'content': content,
214214
}
215-
log.debug("(Search Index) Section [%s:%s]: %s",
216-
section_id, title, content)
217215

218216

219217
def parse_mkdocs_sections(content):
@@ -265,8 +263,6 @@ def parse_mkdocs_sections(content):
265263
'title': h2_title,
266264
'content': h2_content,
267265
}
268-
log.debug("(Search Index) Section [%s:%s]: %s",
269-
section_id, h2_title, h2_content)
270266
# we're unsure which exceptions can be raised
271267
# pylint: disable=bare-except
272268
except:

0 commit comments

Comments
 (0)