Skip to content

Commit 710cfa0

Browse files
committed
Lower log level for unmatched closing tag
1 parent 5e77387 commit 710cfa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrogram/parser/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def handle_endtag(self, tag):
9696
line, offset = self.getpos()
9797
offset += 1
9898

99-
log.warning(f"Unmatched closing tag </{tag}> at line {line}:{offset}")
99+
log.debug(f"Unmatched closing tag </{tag}> at line {line}:{offset}")
100100
else:
101101
if not self.tag_entities[tag]:
102102
self.tag_entities.pop(tag)

0 commit comments

Comments
 (0)