freddyaboulton HF Staff commited on
Commit
ef76b1d
·
verified ·
1 Parent(s): d9f0e05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -1,4 +1,9 @@
1
  from fastrtc import Stream, ReplyOnPause, get_hf_turn_credentials
 
 
 
 
 
2
 
3
  def echo(audio):
4
  yield audio
 
1
  from fastrtc import Stream, ReplyOnPause, get_hf_turn_credentials
2
+ import logging
3
+
4
+ logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
5
+ logger = logging.getLogger("fastrtc")
6
+
7
 
8
  def echo(audio):
9
  yield audio