summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
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
commit079fb4c596673c3f2ac89af8c8a582a6115e673a (patch)
treee95bd779da5f797304385aad60edaacf559bcd2c /qpid/cpp/src
parent839d38dc0284feaed10c0af4ed711d44b4e38fb7 (diff)
downloadqpid-python-079fb4c596673c3f2ac89af8c8a582a6115e673a.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@1469054 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/legacystore/jrnl/jcntl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/legacystore/jrnl/jcntl.cpp b/qpid/cpp/src/qpid/legacystore/jrnl/jcntl.cpp
index a03076dca5..21fcf099b4 100644
--- a/qpid/cpp/src/qpid/legacystore/jrnl/jcntl.cpp
+++ b/qpid/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()))