Hi, if I create an app on streamlit cloud. How do I write some message into steamlit terminal?
Did you try python print function to log messages? For example:
import streamlit as st
st.title("Welcome!")
print("App started")
yes i did, but nothing in the console~~