James McCool commited on
Commit
b739f76
·
1 Parent(s): fefd98c

Add debug output for session state in Streamlit app to enhance visibility into session management. This change aids in tracking session state changes and improves overall debugging capabilities.

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -0
src/streamlit_app.py CHANGED
@@ -12,6 +12,8 @@ for key in list(st.session_state.keys()):
12
  if key not in maintained_keys:
13
  del st.session_state[key]
14
 
 
 
15
  st.set_page_config(layout="wide")
16
 
17
  @st.cache_resource
 
12
  if key not in maintained_keys:
13
  del st.session_state[key]
14
 
15
+ print(st.session_state)
16
+
17
  st.set_page_config(layout="wide")
18
 
19
  @st.cache_resource