summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2013-04-17 20:09:04 +0000
committerCharles E. Rolke <chug@apache.org>2013-04-17 20:09:04 +0000
commita85ec7bc89b5e658df7e23b299c6c2fcde98daf1 (patch)
tree4b52d9a8aa9b8d54d059fbd42c9b6edb746c6644 /cpp
parentcc268ef57f0fa38bf1e20cf252ab7f07bfa8b49a (diff)
downloadqpid-python-a85ec7bc89b5e658df7e23b299c6c2fcde98daf1.tar.gz
QPID-4736: Demote journal log messages from warn to info
when message arises from journal configuration choice. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1469054 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/qpid/legacystore/jrnl/jcntl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/legacystore/jrnl/jcntl.cpp b/cpp/src/qpid/legacystore/jrnl/jcntl.cpp
index a03076dca5..21fcf099b4 100644
--- a/cpp/src/qpid/legacystore/jrnl/jcntl.cpp
+++ b/cpp/src/qpid/legacystore/jrnl/jcntl.cpp
@@ -563,7 +563,7 @@ jcntl::rcvr_janalyze(rcvdat& rd, const std::vector<std::string>* prep_txn_list_p
std::ostringstream oss;
oss << "Recovery found " << ji.num_jfiles() <<
" files (different from --num-jfiles value of " << rd._njf << ").";
- this->log(LOG_WARN, oss.str());
+ this->log(LOG_INFO, oss.str());
rd._njf = ji.num_jfiles();
_rcvdat._enq_cnt_list.resize(rd._njf);
}
@@ -575,7 +575,7 @@ jcntl::rcvr_janalyze(rcvdat& rd, const std::vector<std::string>* prep_txn_list_p
oss << "Recovery found file size = " << (ji.jfsize_sblks() / JRNL_RMGR_PAGE_SIZE) <<
" (different from --jfile-size-pgs value of " <<
(_jfsize_sblks / JRNL_RMGR_PAGE_SIZE) << ").";
- this->log(LOG_WARN, oss.str());
+ this->log(LOG_INFO, oss.str());
_jfsize_sblks = ji.jfsize_sblks();
}
if (_jdir.dirname().compare(ji.jdir()))