This is an automated email from the ASF dual-hosted git repository.
zhangchen pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new d8047c7a8be [cherry-pick](branch-2.0) change merge-on-write
correctness check log to VLOG_NOTICE (#31414) (#36227)
d8047c7a8be is described below
commit d8047c7a8be4d0612da6a7b69dad4d6d72ebe8f8
Author: zhannngchen <[email protected]>
AuthorDate: Thu Jun 13 14:20:24 2024 +0800
[cherry-pick](branch-2.0) change merge-on-write correctness check log to
VLOG_NOTICE (#31414) (#36227)
cherry-pick #31414
---
be/src/olap/tablet.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/be/src/olap/tablet.cpp b/be/src/olap/tablet.cpp
index 515e944f8c3..9eb6f218857 100644
--- a/be/src/olap/tablet.cpp
+++ b/be/src/olap/tablet.cpp
@@ -3281,9 +3281,9 @@ Status Tablet::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]