One of Microsoft's presidio-analyzer modules logs with the root logger:
logging.info(
"Returning a total of %d recognizers (predefined + custom)", len(to_return)
)
This particular line will be written millions of times.
I created an issue on GitHub, but in the meantime, is there a way to suppress these logs? I can't access the logger by name, and I can't set the root logger to WARN either because it propagates to all my loggers.