Remove redundant debug statements
This commit is contained in:
parent
71054bc821
commit
d5e7767841
|
@ -65,10 +65,6 @@ def parse_text_command(text):
|
|||
def parse_text(line):
|
||||
if results := re.findall(search_pattern, line, re.IGNORECASE):
|
||||
logging.debug(f"Found matches: {results}")
|
||||
if len(results) != 1:
|
||||
logging.debug("More than 1 match found.")
|
||||
else:
|
||||
logging.debug("1 match found.")
|
||||
parentheses_items: list = []
|
||||
# FIXME: add links to other mentioned sections, for now just link the first one
|
||||
section_id = format_section_id(results[0])
|
||||
|
|
Loading…
Reference in New Issue