mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-06 11:35:32 +00:00
sip: pipeline: Only inform of unhandled bus massages when debugging
These messages are mainly useful for development. This part will be rewritten once we introduce structured logging. For the moment this will just add noise.
This commit is contained in:
parent
166ea8b21a
commit
765cd2ebb9
1 changed files with 2 additions and 1 deletions
|
@ -159,7 +159,8 @@ bus_cb (GstBus *bus,
|
|||
}
|
||||
|
||||
default:
|
||||
g_debug ("Got unhandled %s message", GST_MESSAGE_TYPE_NAME (message));
|
||||
if (pipeline->debug)
|
||||
g_debug ("Got unhandled %s message", GST_MESSAGE_TYPE_NAME (message));
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue