summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2014-08-21 20:55:46 +0000
committerAlan Conway <aconway@apache.org>2014-08-21 20:55:46 +0000
commitcb53d050ee9936700dd4bbc3cc3e3b15f23fcce0 (patch)
tree586b4620cacdd68f563417c8102263fb4d9ba6fe /qpid/cpp
parentf92bee77875c66624464b319ffc384d9c9c84694 (diff)
downloadqpid-python-cb53d050ee9936700dd4bbc3cc3e3b15f23fcce0.tar.gz
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
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/linearstore/journal/EmptyFilePoolManager.cpp4
1 files changed, 2 insertions, 2 deletions
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_);