Skip to content

Commit 66438f2

Browse files
authored
reduce verbose
1 parent 797347c commit 66438f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/backend/prepdocslib/htmlparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def parse(self, content: IO) -> AsyncGenerator[Page, None]:
3838
Returns:
3939
Page: The parsed html Page.
4040
"""
41-
logger.info("Extracting text from '%s' using local HTML parser (BeautifulSoup)", content.name)
41+
logger.debug("Extracting text from '%s' using local HTML parser (BeautifulSoup)", content.name)
4242

4343
data = content.read()
4444
soup = BeautifulSoup(data, "html.parser")

0 commit comments

Comments
 (0)