mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
8 lines
203 B
Dart
8 lines
203 B
Dart
// Used in Isar db and stored there as int indexes so adding/removing values
|
|
// in this definition should be done extremely carefully in production
|
|
enum LogLevel {
|
|
Info,
|
|
Warning,
|
|
Error,
|
|
Fatal;
|
|
}
|