Make logging more uniform. Fix copyright year
[umurmur.git] / src / ssl.c
index 42f9610b44c1f9d780d895106000ab72f997c299..a4c860f7b0e5e0b0b2f6f04599acb0cb2104ff12 100644 (file)
--- a/src/ssl.c
+++ b/src/ssl.c
@@ -1,5 +1,5 @@
-/* Copyright (C) 2009, Martin Johansson <martin@fatbob.nu>
-   Copyright (C) 2005-2009, Thorvald Natvig <thorvald@natvig.com>
+/* Copyright (C) 2009-2010, Martin Johansson <martin@fatbob.nu>
+   Copyright (C) 2005-2010, Thorvald Natvig <thorvald@natvig.com>
 
    All rights reserved.
 
@@ -300,10 +300,10 @@ void SSL_init(void)
                        sk_SSL_CIPHER_push(cipherlist_new, cipher);
                }
        }
-       Log_info("List of ciphers:");
+       Log_debug("List of ciphers:");
        if (cipherlist_new) {
                for ( i = 0; (cipher = sk_SSL_CIPHER_value(cipherlist_new, i)) != NULL; i++) {
-                       Log_info("%s", SSL_CIPHER_get_name(cipher));
+                       Log_debug("%s", SSL_CIPHER_get_name(cipher));
                        offset += snprintf(cipherstring + offset, 1024 - offset, "%s:", SSL_CIPHER_get_name(cipher));
                }
                cipherstring[offset - 1] = '\0';