Skip to content

Commit 1707648

Browse files
committed
add some more trace messages
1 parent 8a8bcc6 commit 1707648

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/apulse-context.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ pa_operation *
216216
pa_context_set_source_volume_by_index(pa_context *c, uint32_t idx, const pa_cvolume *volume,
217217
pa_context_success_cb_t cb, void *userdata)
218218
{
219-
trace_info("Z %s\n", __func__);
219+
trace_info("Z %s c=%p, idx=%u, volume=%p, cb=%p, userdata=%p\n", __func__, c, idx, volume,
220+
cb, userdata);
220221

221222
return NULL;
222223
}

src/apulse-stream.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ APULSE_EXPORT
576576
uint32_t
577577
pa_stream_get_device_index(pa_stream *s)
578578
{
579-
trace_info("Z %s\n", __func__);
579+
trace_info("Z %s s=%p\n", __func__, s);
580580

581581
return 0;
582582
}

0 commit comments

Comments
 (0)