diff options
author | Adrián Pardini <github@tangopardo.com.ar> | 2017-05-02 21:24:06 -0300 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-01-18 18:27:26 +0000 |
commit | c0195300919af46964884de6b4bbd5df7fb8c211 (patch) | |
tree | f650855a8273d2f45a33e3dee45d7a102eacb467 /ext | |
parent | 03dc22951bacb6fdc3868c8f801e6a52c33a745f (diff) |
shout2send: print actual username in debug log out
https://bugzilla.gnome.org/show_bug.cgi?id=782093
Diffstat (limited to 'ext')
-rw-r--r-- | ext/shout2/gstshout2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c index 64be76483..3d3f652dd 100644 --- a/ext/shout2/gstshout2.c +++ b/ext/shout2/gstshout2.c @@ -502,7 +502,7 @@ gst_shout2send_start (GstBaseSink * basesink) goto set_failed; cur_prop = "username"; - GST_DEBUG_OBJECT (sink, "setting %s: %s", cur_prop, "source"); + GST_DEBUG_OBJECT (sink, "setting %s: %s", cur_prop, sink->username); if (shout_set_user (sink->conn, sink->username) != SHOUTERR_SUCCESS) goto set_failed; |