[#absl-StatusBuilder-LogEveryN-00] = xref:absl.adoc[absl]::xref:absl/StatusBuilder.adoc[StatusBuilder]::LogEveryN :relfileprefix: ../../ :mrdocs: 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. == Synopsis Declared in `<absl/status/status_builder.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/StatusBuilder.adoc[StatusBuilder]& LogEveryN( xref:absl/LogSeverity.adoc[absl::LogSeverity] level, int n) &; ---- == Description This overrides the logging settings from earlier calls to any of the logging mutator functions. == Return Value `*this` to allow method chaining. == Parameters [cols="1,4"] |=== | Name| Description | *level* | The severity level at which to log the result status. | *n* | Log only once per `n` invocations. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#