]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Downgrade "EVP ctr128 is ok" message to info
authorNick Mathewson <nickm@torproject.org>
Mon, 10 Sep 2012 14:38:22 +0000 (10:38 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 10 Sep 2012 14:38:22 +0000 (10:38 -0400)
Part of 6736 effort to try to make startup quieter.

src/common/aes.c

index dd89d5d1ec0af63682217ee34849963821a645ac..c6a997f47367f9a7f4ed4c0e6cbc3faa0d6074ae 100644 (file)
@@ -134,8 +134,8 @@ int
 evaluate_evp_for_aes(int force_val)
 {
   (void) force_val;
-  log_notice(LD_CRYPTO, "This version of OpenSSL has a known-good EVP "
-             "counter-mode implementation. Using it.");
+  log_info(LD_CRYPTO, "This version of OpenSSL has a known-good EVP "
+           "counter-mode implementation. Using it.");
   return 0;
 }
 int