Log severity level. Determines how the message is displayed in the timeline. Defaults to "info".
| 2489 | |
| 2490 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2491 | class SessionLogLevel(Enum): |
| 2492 | """Log severity level. Determines how the message is displayed in the timeline. Defaults to |
| 2493 | "info". |
| 2494 | """ |
| 2495 | ERROR = "error" |
| 2496 | INFO = "info" |
| 2497 | WARNING = "warning" |
| 2498 | |
| 2499 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2500 | @dataclass |