Browse Source

日志缓存大小改成50KB。

sat23 4 năm trước cách đây
mục cha
commit
9f66869632
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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];