How to write message into streamlit console (terminal)?

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~~

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.