how to disable pdfplumber's log output #529
-
hello! code:
output: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @sunday-will, could you provide a Python script (and any relevant files/PDFs) that reproduces the situation you're describing? That will make it easier to diagnose a potential cause/solution. |
Beta Was this translation helpful? Give feedback.
-
Hi @sunday-will Appreciate your interest in the library. The logs are coming from import logging
logging.getLogger("pdfminer").setLevel(logging.WARNING) |
Beta Was this translation helpful? Give feedback.
Hi @sunday-will Appreciate your interest in the library. The logs are coming from
pdfminer
. Can you try usingpdfminer
instead ofpdfplumber
? For example