From cb53d050ee9936700dd4bbc3cc3e3b15f23fcce0 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 21 Aug 2014 20:55:46 +0000 Subject: 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. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1619580 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qpid/cpp/src') diff --git a/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp b/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp index 3109f3e73b..cddb582191 100644 --- a/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp +++ b/qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp @@ -81,9 +81,9 @@ void EmptyFilePoolManager::findEfpPartitions() { } } - // 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_); -- cgit v1.2.1