hello every body,
First above all, thanks for all the dev community for this great work.
How can I disable the watcher logger in my server.
Maybe in the LocalSourcesWatcher.py file ?
best regards,
hello every body,
First above all, thanks for all the dev community for this great work.
How can I disable the watcher logger in my server.
Maybe in the LocalSourcesWatcher.py file ?
best regards,
anyone can help me please ? I found the possibility in the config.py files, but it’s not working
Hi @NotAfk and welcome to the forum 
You can tweak the behavior of the file watcher with the config option server.fileWatcherType.
Use it to switch between:
auto (default) : Streamlit will attempt to use the watchdog module, and falls back to polling if watchdog is not available.watchdog : Force Streamlit to use the watchdog module.poll : Force Streamlit to always use polling.none : Streamlit will not watch files.Let me know if you need any help.
And thanks for using Streamlit!
Thanks a lot !