From 52e25fc08c8dcab248dd6a6e42045b83d1a4ab9e Mon Sep 17 00:00:00 2001 From: xzl Date: Tue, 18 Apr 2017 14:43:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=89=93=E5=8D=B0log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Http/HttpSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/HttpSession.cpp b/src/Http/HttpSession.cpp index 829a7eec..15b27076 100644 --- a/src/Http/HttpSession.cpp +++ b/src/Http/HttpSession.cpp @@ -95,7 +95,7 @@ void HttpSession::onRecv(const Socket::Buffer::Ptr&pBuf) { static uint32_t reqSize = mINI::Instance()[Config::Http::kMaxReqSize].as(); m_ticker.resetTime(); if (m_strRcvBuf.size() + pBuf->size() >= reqSize) { - WarnL << "接收缓冲区溢出!"; + WarnL << "接收缓冲区溢出:" << m_strRcvBuf.size() + pBuf->size() << "," << reqSize; shutdown(); return; }