From 80fc198af89a44e90406c8de8245c94ab5a8f3d7 Mon Sep 17 00:00:00 2001 From: Noir <63553175+Noir01@users.noreply.github.com> Date: Sat, 14 Oct 2023 03:17:40 -0400 Subject: [PATCH] Added slf4j-jdk14.jar to classpath Adding binding for SLF4J that should fix StaticLoggerBinder being not loaded. Followed instructions from warning messages that appear. Signed-off-by: Noir <63553175+Noir01@users.noreply.github.com> --- notifications/notifications/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/notifications/notifications/build.gradle b/notifications/notifications/build.gradle index 0db0b393..1adcafd3 100644 --- a/notifications/notifications/build.gradle +++ b/notifications/notifications/build.gradle @@ -99,6 +99,7 @@ dependencies { exclude group: 'org.jetbrains', module: 'annotations' // resolve jarhell } // ${kotlin_version} does not work for coroutines implementation "${group}:common-utils:${common_utils_version}" + implementation "org.slf4j:slf4j-jdk14:1.7.32" // TODO: change compile to implementation when the _local/stats API is supported compileOnly "org.json:json:20230227" compileOnly "com.github.wnameless.json:json-flattener:0.13.0"