summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/SslPlugin.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-01-05 19:17:24 +0000
committerAlan Conway <aconway@apache.org>2009-01-05 19:17:24 +0000
commitcaef3dad8cb2c7c747d9512629aab88852691b1e (patch)
tree2e5917b984500c75ce8816400504c0f053371a08 /cpp/src/qpid/sys/SslPlugin.cpp
parent6cb018025e2bc2c0b55d7912a912a0dc5fceb0a3 (diff)
downloadqpid-python-caef3dad8cb2c7c747d9512629aab88852691b1e.tar.gz
Log changes: logging default now notice+, "listening on" messages are at notice level.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@731649 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/SslPlugin.cpp')
-rw-r--r--cpp/src/qpid/sys/SslPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/SslPlugin.cpp b/cpp/src/qpid/sys/SslPlugin.cpp
index c519f5dc80..14052c2ee4 100644
--- a/cpp/src/qpid/sys/SslPlugin.cpp
+++ b/cpp/src/qpid/sys/SslPlugin.cpp
@@ -98,7 +98,7 @@ static struct SslPlugin : public Plugin {
const broker::Broker::Options& opts = broker->getOptions();
ProtocolFactory::shared_ptr protocol(new SslProtocolFactory(options,
opts.connectionBacklog, opts.tcpNoDelay));
- QPID_LOG(info, "Listening for SSL connections on TCP port " << protocol->getPort());
+ QPID_LOG(notice, "Listening for SSL connections on TCP port " << protocol->getPort());
broker->registerProtocolFactory("ssl", protocol);
} catch (const std::exception& e) {
QPID_LOG(error, "Failed to initialise SSL plugin: " << e.what());