Revert "Moved note into either warning or info #4745"

This reverts commit d3a4ce1f11.
This commit is contained in:
Jerry (Xinyu Hou)
2015-07-09 13:28:47 -07:00
parent d8582d1093
commit 69a6038cf9
10 changed files with 25 additions and 25 deletions

View File

@@ -109,7 +109,7 @@ Client::Client(
if (m_args.m_enableCrypto) {
m_useSecureNetwork = ARCH->plugin().exists(s_networkSecurity);
if (m_useSecureNetwork == false) {
LOG((CLOG_WARN "crypto disabled because of ns plugin not available"));
LOG((CLOG_NOTE "crypto disabled because of ns plugin not available"));
}
}
}
@@ -154,7 +154,7 @@ Client::connect()
// m_serverAddress will be null if the hostname address is not reolved
if (m_serverAddress.getAddress() != NULL) {
// to help users troubleshoot, show server host name (issue: 60)
LOG((CLOG_INFO "connecting to '%s': %s:%i",
LOG((CLOG_NOTE "connecting to '%s': %s:%i",
m_serverAddress.getHostname().c_str(),
ARCH->addrToString(m_serverAddress.getAddress()).c_str(),
m_serverAddress.getPort()));