[#absl-LogSeverityAtLeast] = xref:absl.adoc[absl]::LogSeverityAtLeast :relfileprefix: ../ :mrdocs: Enums representing a lower bound for LogSeverity. APIs that only operate on messages of at least a certain level (for example, `SetMinLogLevel()`) use this type to specify that level. absl::LogSeverityAtLeast::kInfinity is a level above all threshold levels and therefore no log message will ever meet this threshold. == Synopsis Declared in `<absl/base/log_severity.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- enum class LogSeverityAtLeast : int; ---- == Members [cols="1,4"] |=== | Name| Description | `kInfo` | Threshold matching `absl::LogSeverity::kInfo` and above. | `kWarning` | Threshold matching `absl::LogSeverity::kWarning` and above. | `kError` | Threshold matching `absl::LogSeverity::kError` and above. | `kFatal` | Threshold matching `absl::LogSeverity::kFatal` and above. | `kInfinity` | A level above all threshold levels; no log message will ever meet this threshold. |=== == Non-Member Functions [cols="1,4"] |=== | Name| Description | xref:absl/MinLogLevel.adoc[`MinLogLevel`] | Returns the value of the Minimum Log Level parameter. | xref:absl/SetMinLogLevel.adoc[`SetMinLogLevel`] | Updates the value of Minimum Log Level parameter. | xref:absl/SetStderrThreshold-05a7.adoc[`SetStderrThreshold`] | Updates the Stderr Threshold parameter. | xref:absl/StderrThreshold.adoc[`StderrThreshold`] | Returns the value of the Stderr Threshold parameter. | xref:absl/operator_le-091.adoc[`operator<=`] | Compares an `absl::LogSeverityAtLeast` threshold against an `absl::LogSeverity` value (in either operand order). | xref:absl/operator_gt-09c.adoc[`operator>`] | Compares an `absl::LogSeverityAtLeast` threshold against an `absl::LogSeverity` value (in either operand order). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#