diff options
| author | Charles E. Rolke <chug@apache.org> | 2013-04-17 20:09:04 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2013-04-17 20:09:04 +0000 |
| commit | 079fb4c596673c3f2ac89af8c8a582a6115e673a (patch) | |
| tree | e95bd779da5f797304385aad60edaacf559bcd2c /qpid/cpp | |
| parent | 839d38dc0284feaed10c0af4ed711d44b4e38fb7 (diff) | |
| download | qpid-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')
| -rw-r--r-- | qpid/cpp/src/qpid/legacystore/jrnl/jcntl.cpp | 4 |
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())) |
