summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/TCPIOPlugin.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/TCPIOPlugin.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/TCPIOPlugin.cpp')
-rw-r--r--cpp/src/qpid/sys/TCPIOPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/TCPIOPlugin.cpp b/cpp/src/qpid/sys/TCPIOPlugin.cpp
index a66aca1849..be091f86d8 100644
--- a/cpp/src/qpid/sys/TCPIOPlugin.cpp
+++ b/cpp/src/qpid/sys/TCPIOPlugin.cpp
@@ -70,7 +70,7 @@ static class TCPIOPlugin : public Plugin {
} else {
ProtocolFactory::shared_ptr protocol(new AsynchIOProtocolFactory(opts.port, opts.connectionBacklog,
opts.tcpNoDelay));
- QPID_LOG(info, "Listening on TCP port " << protocol->getPort());
+ QPID_LOG(notice, "Listening on TCP port " << protocol->getPort());
broker->registerProtocolFactory("tcp", protocol);
}
}