stack_wallet/lib/utilities/enums/log_level_enum.dart
2023-01-10 10:02:54 -06:00

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;
}