This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new d9f94b9dc2a branch-4.0: [fix](profile) reduce log verbosity by
changing LOG_INFO to VLOG_CRITICAL for profile operations #61181 (#61207)
d9f94b9dc2a is described below
commit d9f94b9dc2a0d5a2075c0954ceb281c9876521ed
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Mar 11 15:11:16 2026 +0800
branch-4.0: [fix](profile) reduce log verbosity by changing LOG_INFO to
VLOG_CRITICAL for profile operations #61181 (#61207)
Cherry-picked from #61181
Co-authored-by: zclllyybb <[email protected]>
---
be/src/runtime/runtime_query_statistics_mgr.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/be/src/runtime/runtime_query_statistics_mgr.cpp
b/be/src/runtime/runtime_query_statistics_mgr.cpp
index b08f8705b6c..13cc88c5e94 100644
--- a/be/src/runtime/runtime_query_statistics_mgr.cpp
+++ b/be/src/runtime/runtime_query_statistics_mgr.cpp
@@ -161,7 +161,7 @@ static void _report_query_profiles_function(
LOG_WARNING("Query {} send profile to {} failed",
print_id(query_id),
PrintThriftNetworkAddress(coor_addr));
} else {
- LOG_INFO("Send {} profile succeed", print_id(query_id));
+ VLOG_CRITICAL << fmt::format("Send {} profile succeed",
print_id(query_id));
}
}
}
@@ -318,8 +318,8 @@ void RuntimeQueryStatisticsMgr::register_fragment_profile(
_load_channel_profile_map[std::make_pair(query_id, fragment_id)] =
load_channel_profile;
}
- LOG_INFO("register x profile done {}, fragment {}, profiles {}",
print_id(query_id),
- fragment_id, p_profiles.size());
+ VLOG_CRITICAL << fmt::format("register x profile done {}, fragment {},
profiles {}",
+ print_id(query_id), fragment_id,
p_profiles.size());
}
void RuntimeQueryStatisticsMgr::register_resource_context(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]