diff options
| author | Gordon Sim <gsim@apache.org> | 2009-01-26 12:25:23 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-01-26 12:25:23 +0000 |
| commit | 1323f7832e1be3bd0819035651475198145e49ae (patch) | |
| tree | c7ce1457ba8f2b3cf84f6ff2e50d2d1fb4b1857c /cpp/src/qpid/broker | |
| parent | 7db12040e39cc101fbd980e29f37a4c20feff766 (diff) | |
| download | qpid-python-1323f7832e1be3bd0819035651475198145e49ae.tar.gz | |
Some minor updates to logging levels to avoid undue alarm.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@737679 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker')
| -rw-r--r-- | cpp/src/qpid/broker/Broker.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/qpid/broker/SaslAuthenticator.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp index 663a110a78..e4c5c9b5e9 100644 --- a/cpp/src/qpid/broker/Broker.cpp +++ b/cpp/src/qpid/broker/Broker.cpp @@ -237,6 +237,8 @@ Broker::Broker(const Broker::Options& conf) : if (conf.auth) { SaslAuthenticator::init(qpid::saslName); QPID_LOG(info, "SASL enabled"); + } else { + QPID_LOG(notice, "SASL disabled: No Authentication Performed"); } // Initialize plugins diff --git a/cpp/src/qpid/broker/SaslAuthenticator.cpp b/cpp/src/qpid/broker/SaslAuthenticator.cpp index 57c761a41d..736b051945 100644 --- a/cpp/src/qpid/broker/SaslAuthenticator.cpp +++ b/cpp/src/qpid/broker/SaslAuthenticator.cpp @@ -128,7 +128,7 @@ std::auto_ptr<SaslAuthenticator> SaslAuthenticator::createAuthenticator(Connecti if (c.getBroker().getOptions().auth) { return std::auto_ptr<SaslAuthenticator>(new CyrusAuthenticator(c, c.getBroker().getOptions().requireEncrypted)); } else { - QPID_LOG(warning, "SASL: No Authentication Performed"); + QPID_LOG(debug, "SASL: No Authentication Performed"); needWarning = false; return std::auto_ptr<SaslAuthenticator>(new NullAuthenticator(c)); } |
