absl::ExtraMessage::operator()

Appends the accumulated extra message to builder.

Synopsis

Declared in <absl/status/status_builder.h>

StatusBuilder
operator()(StatusBuilder builder) const;

Description

By default, the extra message is added to the original message as if by util::Annotate, which includes a convenience separator between the original message and the enriched one.

Return Value

The builder with the extra message appended.

Parameters

NameDescription
builderThe builder to append the extra message to.