update docker files and logging for webui operation

This commit is contained in:
2025-06-19 15:55:34 +02:00
parent 497b9971ab
commit 4aa718e22b
5 changed files with 10 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
# frontend/app.py
from itertools import filterfalse
import os
import streamlit as st
import requests
from auracast import auracast_config
@@ -240,6 +240,6 @@ else:
# st.error("Could not fetch advertised streams.")
log.basicConfig(
level=log.DEBUG,
level=os.environ.get('LOG_LEVEL', log.DEBUG),
format='%(module)s.py:%(lineno)d %(levelname)s: %(message)s'
)