소스 검색

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

Apple 13 시간 전
부모
커밋
a0df85fee7
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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;