Removing some log messages

Is there any way to stop some internal logging messages? I started logging messages from my application and while all the logs I request are getting sent, after 1 week I am also getting 231k log messages for:

[streamlit.web.server.routes.HealthHandler.get]

Is there any way to limit streamlit messages like that?

I am using the Python logging library and sentry-sdk. My app is https://conversation.streamlit.app/.

If it is not possible can I get more information about these streamlit.web.server logs? Thank you.

Hello,
you can adjust the log level of Streamlit’s logger using the Python logging library.Like below
logging.getLogger(“streamlit”).setLevel(logging.WARNING)