admin管理员组文章数量:1345895
I am using the pdf2docx
package Gitub in python and it looks like in the converter
module, they use logging
directly instead of using a logger
like
logger = logger.getLogger(__name__)
The logging.basicConfig in converter
is set to logging.INFO
and is propagating these horrible logs on. Is it impossible to suppress them because they use logging
directly?
I am using the pdf2docx
package Gitub in python and it looks like in the converter
module, they use logging
directly instead of using a logger
like
logger = logger.getLogger(__name__)
The logging.basicConfig in converter
is set to logging.INFO
and is propagating these horrible logs on. Is it impossible to suppress them because they use logging
directly?
1 Answer
Reset to default 0Create a default catchall root logger object and tell it to be silent:
rootLogger = logging.getLogger("")
rootLogger.disabled = True
rootLogger.propagate = False
Direct calls to logging
will inherit these settings.
本文标签: pythonSuppressing Logging From PackageModule when logging is used directlyStack Overflow
版权声明:本文标题:python - Suppressing Logging From PackageModule when `logging` is used directly - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752367a2532884.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论