瀏覽代碼

日志缓存大小改成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];