diff --git a/internal/core/src/segcore/SegmentSealedImpl.cpp b/internal/core/src/segcore/SegmentSealedImpl.cpp index b81b47cc21..1234b62972 100644 --- a/internal/core/src/segcore/SegmentSealedImpl.cpp +++ b/internal/core/src/segcore/SegmentSealedImpl.cpp @@ -392,7 +392,8 @@ SegmentSealedImpl::check_search(const query::Plan* plan) const { AssertInfo(plan->extra_info_opt_.has_value(), "Extra info of search plan doesn't have value"); if (!is_system_field_ready()) { - PanicInfo("Segment " + std::to_string(this->id_) + " System Field RowID or Timestamp is not loaded"); + PanicInfo("failed to load row ID or timestamp, potential missing bin logs or empty segments. Segment ID = " + + std::to_string(this->id_)); } auto& request_fields = plan->extra_info_opt_.value().involved_fields_;