From c1ff179498426748f3f9c57e2a10dd2304ac7757 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 6 Dec 2025 23:25:40 +0100 Subject: [PATCH] don't be that verbose --- modules/active_modifier.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/active_modifier.py b/modules/active_modifier.py index 008fa49..ed71dfb 100644 --- a/modules/active_modifier.py +++ b/modules/active_modifier.py @@ -112,8 +112,6 @@ class Module(ActiveModifier): if data.get("action") == "add_to_toplay": songs_to_add = data.get("songs") if isinstance(songs_to_add, list): - logger.info(f"Received request to add {len(songs_to_add)} items to toplay queue from '{source_name or 'unnamed'}'") - with self.file_lock: with open("/tmp/radioPlayer_toplay", "a") as f: for song_path in songs_to_add: f.write(f"{song_path}\n")