Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|