From a6b5c872f59f7f4fdb28b93ec4946dee87f8b507 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 4 Mar 2015 09:00:01 +0000 Subject: [PATCH] Rephrased "crypto disabled" log, changed to error #4313 --- src/lib/client/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/client/Client.cpp b/src/lib/client/Client.cpp index 456260f0..fcda2eb8 100644 --- a/src/lib/client/Client.cpp +++ b/src/lib/client/Client.cpp @@ -108,7 +108,7 @@ Client::Client( if (enableCrypto) { m_useSecureNetwork = ARCH->plugin().exists(s_networkSecurity); if (m_useSecureNetwork == false) { - LOG((CLOG_NOTE "crypto disabled because of ns plugin not available")); + LOG((CLOG_ERR "secure connection disabled, ns plugin not found")); } } }