1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-07-02 22:42:55 +00:00

fix: add missing 'fatal' severity

This commit is contained in:
2024-05-15 17:27:04 +02:00
parent c922e27758
commit 041bf459ef
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")