Bladeren bron

V1.4.10
1、修改了ftp的文件,打印出原始的字符串值

Apple 11 uur geleden
bovenliggende
commit
a0df85fee7
1 gewijzigde bestanden met toevoegingen van 2 en 0 verwijderingen
  1. 2 0
      module/CurlFtp/CurlFtp.cpp

+ 2 - 0
module/CurlFtp/CurlFtp.cpp

@@ -3,6 +3,7 @@
 #include <regex>
 #include <iosfwd>
 #include <fstream>
+#include <spdlog.h>
 
 #include "stdlog.h"
 
@@ -366,6 +367,7 @@ const std::regex parseReg4(R"(^-.*$)");
  */
 static bool parseFileInfo(const std::string& strSrc, std::vector<CF_FileInfo>& fileInfo)
 {
+    SPDLOG_INFO("SRC FILE INFO:\n{}", strSrc);
 #if defined(_WIN32)
     // auto str1 = GBToUTF8(strSrc.c_str());
     std::string str2 = strSrc;