You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2014/08/21 22:55:47 UTC

svn commit: r1619580 - /qpid/trunk/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp

Author: aconway
Date: Thu Aug 21 20:55:46 2014
New Revision: 1619580

URL: http://svn.apache.org/r1619580
Log:
NO-JIRA: Reduce "No EFP Partition" log message from warning to info.

It is normal for there to be no EFP partition if a broker is being started for
the first time with a clean data directory.

Modified:
    qpid/trunk/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp?rev=1619580&r1=1619579&r2=1619580&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp Thu Aug 21 20:55:46 2014
@@ -81,9 +81,9 @@ void EmptyFilePoolManager::findEfpPartit
             }
         }
 
-        // If no partition was found, create an empty default partition with a warning.
+        // If no partition was found, create an empty default partition.
         if (!foundPartition) {
-            journalLogRef_.log(JournalLog::LOG_WARN, "No EFP partition found, creating an empty partition.");
+            journalLogRef_.log(JournalLog::LOG_INFO, "No EFP partition found, creating an empty partition.");
             std::ostringstream oss;
             oss << qlsStorePath_ << "/" << EmptyFilePoolPartition::getPartionDirectoryName(defaultPartitionNumber_)
                 << "/" << EmptyFilePoolPartition::s_efpTopLevelDir_ << "/" << EmptyFilePool::dirNameFromDataSize(defaultEfpDataSize_kib_);



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org