Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -418,7 +418,7 @@ def app_sendonly():
|
|
418 |
|
419 |
if __name__ == "__main__":
|
420 |
logging.basicConfig(
|
421 |
-
format="[%(asctime)s] %(levelname)7s from %(name)s in %(
|
422 |
"%(message)s",
|
423 |
force=True,
|
424 |
)
|
@@ -428,4 +428,7 @@ if __name__ == "__main__":
|
|
428 |
st_webrtc_logger = logging.getLogger("streamlit_webrtc")
|
429 |
st_webrtc_logger.setLevel(logging.DEBUG)
|
430 |
|
|
|
|
|
|
|
431 |
main()
|
|
|
418 |
|
419 |
if __name__ == "__main__":
|
420 |
logging.basicConfig(
|
421 |
+
format="[%(asctime)s] %(levelname)7s from %(name)s in %(pathname)s:%(lineno)d: "
|
422 |
"%(message)s",
|
423 |
force=True,
|
424 |
)
|
|
|
428 |
st_webrtc_logger = logging.getLogger("streamlit_webrtc")
|
429 |
st_webrtc_logger.setLevel(logging.DEBUG)
|
430 |
|
431 |
+
fsevents_logger = logging.getLogger("fsevents")
|
432 |
+
fsevents_logger.setLevel(logging.WARNING)
|
433 |
+
|
434 |
main()
|