From 46ba10a455c140bae453fc5dd03712727331d777 Mon Sep 17 00:00:00 2001 From: codey Date: Tue, 11 Feb 2025 16:47:54 -0500 Subject: [PATCH] 1xlogging.critical->info --- endpoints/radio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/radio.py b/endpoints/radio.py index 29aed84..8812ade 100644 --- a/endpoints/radio.py +++ b/endpoints/radio.py @@ -226,7 +226,7 @@ class Radio(FastAPI): async def load_playlist(self): try: - logging.critical(f"Loading playlist...") + logging.info(f"Loading playlist...") self.active_playlist.clear() # db_query = 'SELECT distinct(artist || " - " || song) AS artistdashsong, id, artist, song, genre, file_path, duration FROM tracks\ # GROUP BY artistdashsong ORDER BY RANDOM()'