RacLogLevel class abstract

Log level for the logging callback (rac_log_level_t), as the raw C-ABI integers the native layer expects.

These mirror the generated LogLevel proto enum value-for-value (LOG_LEVEL_TRACE = 0 … LOG_LEVEL_FATAL = 5, see generated/logging.pbenum .dart), which is itself aligned with enum rac_log_level in include/rac/core/rac_types.h. They are kept as const int literals (not LogLevel.*.value) because FFI call sites use them as switch case labels, which Dart requires to be compile-time constants.

Constructors

RacLogLevel()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

debug → const int
error → const int
fatal → const int
info → const int
trace → const int
warning → const int