You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2007/05/21 17:23:56 UTC

svn commit: r540169 - /incubator/qpid/branches/M2/cpp/lib/broker/NullMessageStore.cpp

Author: gsim
Date: Mon May 21 08:23:55 2007
New Revision: 540169

URL: http://svn.apache.org/viewvc?view=rev&rev=540169
Log:
Made message less scary when persistence not enabled(!).


Modified:
    incubator/qpid/branches/M2/cpp/lib/broker/NullMessageStore.cpp

Modified: incubator/qpid/branches/M2/cpp/lib/broker/NullMessageStore.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/M2/cpp/lib/broker/NullMessageStore.cpp?view=diff&rev=540169&r1=540168&r2=540169
==============================================================================
--- incubator/qpid/branches/M2/cpp/lib/broker/NullMessageStore.cpp (original)
+++ incubator/qpid/branches/M2/cpp/lib/broker/NullMessageStore.cpp Mon May 21 08:23:55 2007
@@ -42,7 +42,7 @@
 
 void NullMessageStore::recover(RecoveryManager&, const MessageStoreSettings* const)
 {
-    if (warn) std::cout << "WARNING: Persistence not enabled, no recovery of queues or messages." << std::endl;
+    if (warn) std::cout << "Persistence not enabled, no recovery attempted." << std::endl;
 }
 
 void NullMessageStore::stage(Message* const)