Explorar o código

Make log level INFO in addTrustedCACertFile()

With WARN level, they will be always printed on Mac OS and old GNUTLS
build which does not have its API.
Tatsuhiro Tsujikawa %!s(int64=12) %!d(string=hai) anos
pai
achega
ddad275dbd
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      src/AppleTLSContext.cc
  2. 1 1
      src/LibgnutlsTLSContext.cc

+ 1 - 1
src/AppleTLSContext.cc

@@ -54,7 +54,7 @@ bool AppleTLSContext::addCredentialFile(const std::string& certfile,
 
 bool AppleTLSContext::addTrustedCACertFile(const std::string& certfile)
 {
-  A2_LOG_WARN("TLS CA bundle files are not supported. Use the KeyChain to manage your certificates.");
+  A2_LOG_INFO("TLS CA bundle files are not supported. Use the KeyChain to manage your certificates.");
   return false;
 }
 

+ 1 - 1
src/LibgnutlsTLSContext.cc

@@ -114,7 +114,7 @@ bool GnuTLSContext::addSystemTrustedCACerts()
     return true;
   }
 #else
-  A2_LOG_WARN("System certificates not supported");
+  A2_LOG_INFO("System certificates not supported");
   return false;
 #endif
 }