소스 검색

日志缓存大小改成50KB。

sat23 4 년 전
부모
커밋
9f66869632
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      TCLCommand/TCLCommand/utils.cpp

+ 1 - 1
TCLCommand/TCLCommand/utils.cpp

@@ -22,7 +22,7 @@ namespace utils
 
     std::string _dprintf(CHAR* pszStr, ...)
     {
-        const int LOGLEN = 1024*20;
+        const int LOGLEN = 1024*50;
         static char *pszData = NULL;
         if ( pszData == NULL )
             pszData = new char[LOGLEN];