mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-22 01:18:36 +03:00
9 lines
129 B
Zig
9 lines
129 B
Zig
/// sentry_level_t
|
|
pub const Level = enum(c_int) {
|
|
debug = -1,
|
|
info = 0,
|
|
warning = 1,
|
|
err = 2,
|
|
fatal = 3,
|
|
};
|