소스 검색

AppleTLS: Silence cipher suite selection

Nils Maier 8 년 전
부모
커밋
54ccab8ccb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/AppleTLSSession.cc

+ 1 - 1
src/AppleTLSSession.cc

@@ -441,7 +441,7 @@ AppleTLSSession::AppleTLSSession(AppleTLSContext* ctx)
     return;
   }
   for (const auto& suite : enabled) {
-    A2_LOG_INFO(
+    A2_LOG_DEBUG(
         fmt("AppleTLS: Enabled suite %s", suiteToString(suite).c_str()));
   }
   if (SSLSetEnabledCiphers(sslCtx_, &enabled[0], enabled.size()) != noErr) {