소스 검색

Comment out debug print

yhirose 6 년 전
부모
커밋
097c61b871
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      httplib.h

+ 1 - 1
httplib.h

@@ -2422,8 +2422,8 @@ inline bool SSLClient::is_ssl() const { return true; }
 
 inline bool SSLClient::check_host(const std::string &host,
                                   const char *pattern) const {
-  printf("host: %s, pattern: %s\n", host.c_str(), pattern);
   // TODO: Wildcard
+  // printf("host: %s, pattern: %s\n", host.c_str(), pattern);
   return host == pattern;
 }