Browse Source

日志缓存大小改成50KB。

sat23 4 years ago
parent
commit
9f66869632
1 changed files with 1 additions and 1 deletions
  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];