Hi,
Iβm facing issues with the logging of one of my apps so I tried to go back to the most simple possible logging:
import streamlit as st
import logging
st.write("This is a test!")
logging.info("This is a logging test")
But when deployed on Cloud, no info will show on the logs:
[07:48:24] π Pulling code changes from Github...
[07:48:26] π¦ Processing dependencies...
[07:48:26] π¦ Processed dependencies!
[07:48:27] π Updated app!
Am I missing something obvious?
Thanks