This is an automated email from the ASF dual-hosted git repository. huajianlan pushed a commit to branch nested_column_prune in repository https://gitbox.apache.org/repos/asf/doris.git
commit 5119904664cae4fb35676d0226ea9585e17b93cd Author: Hu Shenggang <[email protected]> AuthorDate: Tue Nov 4 14:28:15 2025 +0800 remove debug log --- be/src/http/action/debug_point_action.cpp | 3 --- be/src/olap/rowset/segment_v2/column_reader.cpp | 2 -- 2 files changed, 5 deletions(-) diff --git a/be/src/http/action/debug_point_action.cpp b/be/src/http/action/debug_point_action.cpp index 600ae645341..babea96268a 100644 --- a/be/src/http/action/debug_point_action.cpp +++ b/be/src/http/action/debug_point_action.cpp @@ -35,13 +35,10 @@ void BaseDebugPointAction::handle(HttpRequest* req) { "Disable debug points. please check config::enable_debug_points"); } std::string result = status.to_json(); - LOG(INFO) << "handle request result:" << result << ", status: " << status.to_string(); if (status.ok()) { - LOG(INFO) << "***** send ok"; HttpChannel::send_reply(req, HttpStatus::OK, result); } else { HttpChannel::send_reply(req, HttpStatus::INTERNAL_SERVER_ERROR, result); - LOG(INFO) << "***** send error"; } } diff --git a/be/src/olap/rowset/segment_v2/column_reader.cpp b/be/src/olap/rowset/segment_v2/column_reader.cpp index 822b5d31332..0cecd06e60e 100644 --- a/be/src/olap/rowset/segment_v2/column_reader.cpp +++ b/be/src/olap/rowset/segment_v2/column_reader.cpp @@ -945,8 +945,6 @@ Result<TColumnAccessPaths> ColumnIterator::_get_sub_access_paths( if (!name_path.data_access_path.path.empty()) { ++it; } else { - LOG(INFO) << "********* set _column_name: " << _column_name - << " need_to_read true **********"; set_need_to_read(); it = sub_access_paths.erase(it); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
