diff options
Diffstat (limited to 'src/examples')
-rw-r--r-- | src/examples/export-source.c | 2 | ||||
-rw-r--r-- | src/examples/media-session/policy-ep.c | 4 | ||||
-rw-r--r-- | src/examples/media-session/policy-node.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/examples/export-source.c b/src/examples/export-source.c index 6e53c012..087f5725 100644 --- a/src/examples/export-source.c +++ b/src/examples/export-source.c @@ -339,7 +339,7 @@ static int impl_port_use_buffers(void *object, } b->id = i; b->buffer = buffers[i]; - pw_log_info("got buffer %d size %d", i, datas[0].maxsize); + pw_log_debug("got buffer %d size %d", i, datas[0].maxsize); spa_list_append(&d->empty, &b->link); } d->n_buffers = n_buffers; diff --git a/src/examples/media-session/policy-ep.c b/src/examples/media-session/policy-ep.c index b6743012..dbb9bd78 100644 --- a/src/examples/media-session/policy-ep.c +++ b/src/examples/media-session/policy-ep.c @@ -419,14 +419,14 @@ static int rescan_endpoint(struct impl *impl, struct endpoint *ep) find.ep = ep; find.exclusive = exclusive; - pw_log_info(NAME " %p: exclusive:%d", impl, exclusive); + pw_log_debug(NAME " %p: exclusive:%d", impl, exclusive); str = spa_dict_lookup(props, PW_KEY_ENDPOINT_TARGET); if (str == NULL) str = spa_dict_lookup(props, PW_KEY_NODE_TARGET); if (str != NULL) { uint32_t path_id = atoi(str); - pw_log_info(NAME " %p: target:%d", impl, path_id); + pw_log_debug(NAME " %p: target:%d", impl, path_id); if ((obj = sm_media_session_find_object(impl->session, path_id)) != NULL) { if (strcmp(obj->type, PW_TYPE_INTERFACE_Endpoint) == 0) { diff --git a/src/examples/media-session/policy-node.c b/src/examples/media-session/policy-node.c index 28a3c9a4..82696eb0 100644 --- a/src/examples/media-session/policy-node.c +++ b/src/examples/media-session/policy-node.c @@ -460,12 +460,12 @@ static int rescan_node(struct impl *impl, struct node *n) find.target = n; find.exclusive = exclusive; - pw_log_info(NAME " %p: exclusive:%d", impl, exclusive); + pw_log_debug(NAME " %p: exclusive:%d", impl, exclusive); str = spa_dict_lookup(props, PW_KEY_NODE_TARGET); if (str != NULL) { uint32_t path_id = atoi(str); - pw_log_info(NAME " %p: target:%d", impl, path_id); + pw_log_debug(NAME " %p: target:%d", impl, path_id); if ((obj = sm_media_session_find_object(impl->session, path_id)) != NULL) { if (strcmp(obj->type, PW_TYPE_INTERFACE_Node) == 0) { |