absl::StatusBuilder::LogEveryN

Mutates the builder so that the result status will be logged every N invocations (without a stack trace) when this builder is converted to a Status.

Synopses

Declared in <absl/status/status_builder.h>

Mutates the builder so that the result status will be logged every N invocations (without a stack trace) when this builder is converted to a Status.

StatusBuilder&
LogEveryN(
    absl::LogSeverity level,
    int n) &;
» more...

Mutates the builder so that the result status will be logged every N invocations (without a stack trace) when this builder is converted to a Status.

[[nodiscard]]
StatusBuilder&&
LogEveryN(
    absl::LogSeverity level,
    int n) &&;
» more...

Return Value

*this to allow method chaining.

Parameters

NameDescription
levelThe severity level at which to log the result status.
nLog only once per n invocations.