1
0
mirror of https://github.com/pcvolkmer/mv64e-etl-processor synced 2025-09-13 17:02:52 +00:00

fix: add missing 'fatal' severity

This commit is contained in:
2024-05-15 17:27:04 +02:00
parent 86bee9e2cf
commit e9839c2731
3 changed files with 13 additions and 8 deletions

View File

@@ -57,6 +57,7 @@ class ReportService(
data class Issue(val severity: Severity, val message: String)
enum class Severity(@JsonValue val value: String) {
FATAL("fatal"),
ERROR("error"),
WARNING("warning"),
INFO("info")