audio-group.lua: Demote creation of audio group log to info

This was never meant to be a warning message.
This commit is contained in:
Julian Bouzas 2025-06-23 08:48:41 -04:00 committed by George Kiagiadakis
parent f8be5a76e6
commit fb1738932b

View file

@ -157,7 +157,7 @@ SimpleEventHook {
-- Create group loopback module if it does not exist -- Create group loopback module if it does not exist
local m = group_loopback_modules [direction][group] local m = group_loopback_modules [direction][group]
if m == nil then 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 "")) (target_object and (" with target object " .. tostring (target_object)) or ""))
m = CreateStreamLoopback (stream_props, group, target_object, direction) m = CreateStreamLoopback (stream_props, group, target_object, direction)
group_loopback_modules [direction][group] = m group_loopback_modules [direction][group] = m