summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/NullMessageStore.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-08-08 13:50:44 +0000
committerAlan Conway <aconway@apache.org>2007-08-08 13:50:44 +0000
commit387a21ca68e54483664a6beb1bbfe5bd3e8b76fa (patch)
treee02984272794445b709b61f583bd8d03ad584f12 /cpp/src/qpid/broker/NullMessageStore.cpp
parentb355ad32211ffc96b7a7516d89f894e471828460 (diff)
downloadqpid-python-387a21ca68e54483664a6beb1bbfe5bd3e8b76fa.tar.gz
NullMessageStore log levels changed from warning to info.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@563880 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/NullMessageStore.cpp')
-rw-r--r--cpp/src/qpid/broker/NullMessageStore.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/src/qpid/broker/NullMessageStore.cpp b/cpp/src/qpid/broker/NullMessageStore.cpp
index 4c1f98eb5a..35a2a45c1f 100644
--- a/cpp/src/qpid/broker/NullMessageStore.cpp
+++ b/cpp/src/qpid/broker/NullMessageStore.cpp
@@ -51,17 +51,17 @@ NullMessageStore::NullMessageStore(bool _warn) : warn(_warn){}
void NullMessageStore::create(const PersistableQueue& queue)
{
- QPID_LOG(warning, "Can't create durable queue '" << queue.getName() << "'. Persistence not enabled.");
+ QPID_LOG(info, "Can't create durable queue '" << queue.getName() << "'. Persistence not enabled.");
}
void NullMessageStore::destroy(const PersistableQueue& queue)
{
- QPID_LOG(warning, "Can't destroy durable queue '" << queue.getName() << "'. Persistence not enabled.");
+ QPID_LOG(info, "Can't destroy durable queue '" << queue.getName() << "'. Persistence not enabled.");
}
void NullMessageStore::create(const PersistableExchange& exchange)
{
- QPID_LOG(warning, "Can't create durable exchange '"
+ QPID_LOG(info, "Can't create durable exchange '"
<< exchange.getName() << "'. Persistence not enabled.");
}
@@ -74,37 +74,37 @@ void NullMessageStore::unbind(const PersistableExchange&, const PersistableQueue
void NullMessageStore::recover(RecoveryManager&)
{
- QPID_LOG(warning, "Persistence not enabled, no recovery attempted.");
+ QPID_LOG(info, "Persistence not enabled, no recovery attempted.");
}
void NullMessageStore::stage(PersistableMessage&)
{
- QPID_LOG(warning, "Can't stage message. Persistence not enabled.");
+ QPID_LOG(info, "Can't stage message. Persistence not enabled.");
}
void NullMessageStore::destroy(PersistableMessage&)
{
- QPID_LOG(warning, "No need to destroy staged message. Persistence not enabled.");
+ QPID_LOG(info, "No need to destroy staged message. Persistence not enabled.");
}
void NullMessageStore::appendContent(PersistableMessage&, const string&)
{
- QPID_LOG(warning, "Can't load content. Persistence not enabled.");
+ QPID_LOG(info, "Can't load content. Persistence not enabled.");
}
void NullMessageStore::loadContent(PersistableMessage&, string&, uint64_t, uint32_t)
{
- QPID_LOG(warning, "Can't load content. Persistence not enabled.");
+ QPID_LOG(info, "Can't load content. Persistence not enabled.");
}
void NullMessageStore::enqueue(TransactionContext*, PersistableMessage&, const PersistableQueue& queue)
{
- QPID_LOG(warning, "Can't enqueue message onto '" << queue.getName() << "'. Persistence not enabled.");
+ QPID_LOG(info, "Can't enqueue message onto '" << queue.getName() << "'. Persistence not enabled.");
}
void NullMessageStore::dequeue(TransactionContext*, PersistableMessage&, const PersistableQueue& queue)
{
- QPID_LOG(warning, "Can't dequeue message from '" << queue.getName() << "'. Persistence not enabled.");
+ QPID_LOG(info, "Can't dequeue message from '" << queue.getName() << "'. Persistence not enabled.");
}
std::auto_ptr<TransactionContext> NullMessageStore::begin()