This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 2773f7b1a78 [chore](log) change merge-on-write correctness check log
to VLOG_NOTICE (#31414)
2773f7b1a78 is described below
commit 2773f7b1a78f389468a376df5b693026cd3e9eb3
Author: zhannngchen <[email protected]>
AuthorDate: Mon Feb 26 23:46:41 2024 +0800
[chore](log) change merge-on-write correctness check log to VLOG_NOTICE
(#31414)
---
be/src/olap/base_tablet.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/be/src/olap/base_tablet.cpp b/be/src/olap/base_tablet.cpp
index c0904bdeadc..09960fd0c03 100644
--- a/be/src/olap/base_tablet.cpp
+++ b/be/src/olap/base_tablet.cpp
@@ -793,9 +793,9 @@ Status
BaseTablet::calc_segment_delete_bitmap(RowsetSharedPtr rowset,
RowsetIdUnorderedSet rowsetids;
for (const auto& rowset : specified_rowsets) {
rowsetids.emplace(rowset->rowset_id());
- LOG(INFO) << "[tabletID:" << tablet_id() << "]"
- << "[add_sentinel_mark_to_delete_bitmap][end_version:"
<< end_version << "]"
- << "add:" << rowset->rowset_id();
+ VLOG_NOTICE << "[tabletID:" << tablet_id() << "]"
+ << "[add_sentinel_mark_to_delete_bitmap][end_version:"
<< end_version << "]"
+ << "add:" << rowset->rowset_id();
}
add_sentinel_mark_to_delete_bitmap(delete_bitmap.get(), rowsetids);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]