diff --git a/plugins/obs-outputs/librtmp/rtmp.c b/plugins/obs-outputs/librtmp/rtmp.c index 8814603c3..a80320280 100644 --- a/plugins/obs-outputs/librtmp/rtmp.c +++ b/plugins/obs-outputs/librtmp/rtmp.c @@ -3390,10 +3390,9 @@ HandleInvoke(RTMP *r, const char *body, unsigned int nBodySize) else { + RTMP_Log(RTMP_LOGWARNING, "Unhandled: %s:\n%s", r->Link.tcUrl.av_val, code.av_val); if (description.av_len) - RTMP_Log(RTMP_LOGWARNING, "Unhandled: %s:\n%s (%s)", r->Link.tcUrl.av_val, code.av_val, description.av_val); - else - RTMP_Log(RTMP_LOGWARNING, "Unhandled: %s:\n%s", r->Link.tcUrl.av_val, code.av_val); + RTMP_Log(RTMP_LOGDEBUG, "Description: %s", description.av_val); } } else if (AVMATCH(&method, &av_playlist_ready))