mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-20 04:10:03 +01:00
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:
parent
f8be5a76e6
commit
fb1738932b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue