summaryrefslogtreecommitdiff
path: root/src/main/kotlin/dev/dnpm
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-12-05 14:22:02 +0100
committerPaul-Christian Volkmer2023-12-05 14:24:40 +0100
commitced6609d9ab75b42304df8888b1564a1a1795a5b (patch)
treea3daeea96e190cc60c23c3b51b454da6c95b1f7f /src/main/kotlin/dev/dnpm
parent8dee349c377ebebba7e6a3633f71cf2c3e48183d (diff)
fix: add info severity to data quality report
Diffstat (limited to 'src/main/kotlin/dev/dnpm')
-rw-r--r--src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt b/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt
index ae36705..cc19d69 100644
--- a/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt
+++ b/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt
@@ -56,5 +56,6 @@ class ReportService(
enum class Severity(@JsonValue val value: String) {
ERROR("error"),
WARNING("warning"),
+ INFO("info")
}
} \ No newline at end of file