From 6d08e2a2432380f009786633ebe78aeafe83dff3 Mon Sep 17 00:00:00 2001 From: xiongziliang <771730766@qq.com> Date: Thu, 30 May 2019 12:17:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84rtmp=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=99=A8=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Rtmp/RtmpSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rtmp/RtmpSession.cpp b/src/Rtmp/RtmpSession.cpp index f643c77b..171daa38 100644 --- a/src/Rtmp/RtmpSession.cpp +++ b/src/Rtmp/RtmpSession.cpp @@ -85,7 +85,7 @@ void RtmpSession::onRecv(const Buffer::Ptr &pBuf) { _ui64TotalBytes += pBuf->size(); onParseRtmp(pBuf->data(), pBuf->size()); } catch (exception &e) { - shutdown(SockException(Err_shutdown,StrPrinter << "catch exception:" << e.what())); + shutdown(SockException(Err_shutdown, e.what())); } }