Parcourir la source

日志缓存大小改成50KB。

sat23 il y a 4 ans
Parent
commit
9f66869632
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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];