Skip to content

Commit

Permalink
[chore](log) print query id before logging profile in be.INFO (#32915)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqiang-hhhh authored Mar 27, 2024
1 parent 2dca398 commit 8650ac6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion be/src/runtime/plan_fragment_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,10 @@ void PlanFragmentExecutor::close() {
// load_channel_profile()->compute_time_in_profile(); // TODO load channel profile add timer
load_channel_profile()->pretty_print(&ss);
}
LOG(INFO) << ss.str();

LOG(INFO) << "Query : " << print_id(this->_query_id) << " instance "
<< print_id(this->runtime_state()->fragment_instance_id()) << '\n'
<< ss.str();
}
LOG(INFO) << "Close() fragment_instance_id="
<< print_id(_runtime_state->fragment_instance_id());
Expand Down

0 comments on commit 8650ac6

Please sign in to comment.