From fb1738932bed19df0a7133ac40b7a9dad1b7df14 Mon Sep 17 00:00:00 2001 From: Julian Bouzas Date: Mon, 23 Jun 2025 08:48:41 -0400 Subject: [PATCH] audio-group.lua: Demote creation of audio group log to info This was never meant to be a warning message. --- src/scripts/node/audio-group.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/node/audio-group.lua b/src/scripts/node/audio-group.lua index a506cd45..93083b48 100644 --- a/src/scripts/node/audio-group.lua +++ b/src/scripts/node/audio-group.lua @@ -157,7 +157,7 @@ SimpleEventHook { -- Create group loopback module if it does not exist local m = group_loopback_modules [direction][group] if m == nil then - Log.warning ("Creating " .. direction .. " loopback for audio group " .. group .. + Log.info ("Creating " .. direction .. " loopback for audio group " .. group .. (target_object and (" with target object " .. tostring (target_object)) or "")) m = CreateStreamLoopback (stream_props, group, target_object, direction) group_loopback_modules [direction][group] = m