[#absl-LogSeverityAtMost] = xref:absl.adoc[absl]::LogSeverityAtMost :relfileprefix: ../ :mrdocs: Enums representing an upper bound for LogSeverity. APIs that only operate on messages of at most a certain level (for example, buffer all messages at or below a certain level) use this type to specify that level. absl::LogSeverityAtMost::kNegativeInfinity is a level below all threshold levels and therefore will exclude all log messages. == Synopsis Declared in `<absl/base/log_severity.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- enum class LogSeverityAtMost : int; ---- == Members [cols="1,4"] |=== | Name| Description | `kNegativeInfinity` | A level below all threshold levels; excludes all log messages. | `kInfo` | Threshold matching `absl::LogSeverity::kInfo` and below. | `kWarning` | Threshold matching `absl::LogSeverity::kWarning` and below. | `kError` | Threshold matching `absl::LogSeverity::kError` and below. | `kFatal` | Threshold matching `absl::LogSeverity::kFatal` and below. |=== == Non-Member Functions [cols="1,4"] |=== | Name| Description | xref:absl/operator_lt-046.adoc[`operator<`] | Compares an `absl::LogSeverityAtMost` threshold against an `absl::LogSeverity` value (in either operand order). | xref:absl/operator_ge-036.adoc[`operator>=`] | Compares an `absl::LogSeverityAtMost` threshold against an `absl::LogSeverity` value (in either operand order). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#