Skip to content

Commit

Permalink
mac-capture: Log source name on coreaudio initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Penwy committed Oct 20, 2024
1 parent 39b91d8 commit 4db563c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/mac-capture/mac-audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,8 @@ static bool coreaudio_init(struct coreaudio_data *ca)
if (!coreaudio_start(ca))
goto fail;

blog(LOG_INFO, "coreaudio: Device '%s' [%" PRIu32 " Hz] initialized", ca->device_name, ca->sample_rate);
blog(LOG_INFO, "coreaudio: Device '%s' [%" PRIu32 " Hz] initialized (source: %s)", ca->device_name,
ca->sample_rate, obs_source_get_name(ca->source));
return ca->au_initialized;

fail:
Expand Down

0 comments on commit 4db563c

Please sign in to comment.